Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Build Your Application On Node.js
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
mahdi pedramrazi
March 21, 2014
Programming
1
130
Build Your Application On Node.js
mahdi pedramrazi
March 21, 2014
Tweet
Share
More Decks by mahdi pedramrazi
See All by mahdi pedramrazi
CSS Shapes
pedramphp
1
66
Node.js Application Architecture.
pedramphp
0
870
CSS Best Practices
pedramphp
0
130
How to write UI Components
pedramphp
0
96
Other Decks in Programming
See All in Programming
登壇資料を作る時に意識していること #登壇資料_findy
konifar
4
1.1k
humanlayerのブログから学ぶ、良いCLAUDE.mdの書き方
tsukamoto1783
0
190
CSC307 Lecture 07
javiergs
PRO
0
550
AI & Enginnering
codelynx
0
110
LLM Observabilityによる 対話型音声AIアプリケーションの安定運用
gekko0114
2
430
余白を設計しフロントエンド開発を 加速させる
tsukuha
7
2.1k
【卒業研究】会話ログ分析によるユーザーごとの関心に応じた話題提案手法
momok47
0
200
AI時代の認知負荷との向き合い方
optfit
0
160
AIフル活用時代だからこそ学んでおきたい働き方の心得
shinoyu
0
130
AI時代のキャリアプラン「技術の引力」からの脱出と「問い」へのいざない / tech-gravity
minodriven
21
7.2k
CSC307 Lecture 08
javiergs
PRO
0
670
AIと一緒にレガシーに向き合ってみた
nyafunta9858
0
240
Featured
See All Featured
AI in Enterprises - Java and Open Source to the Rescue
ivargrimstad
0
1.1k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
17k
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
86
Become a Pro
speakerdeck
PRO
31
5.8k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
32
2.8k
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.7k
Thoughts on Productivity
jonyablonski
74
5k
State of Search Keynote: SEO is Dead Long Live SEO
ryanjones
0
120
AI: The stuff that nobody shows you
jnunemaker
PRO
2
260
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
231
22k
Avoiding the “Bad Training, Faster” Trap in the Age of AI
tmiket
0
76
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2k
Transcript
Build Your Applica.on On Node.js Mahdi Pedramrazi
Agenda • What is Node.js • Hello world
with Node.js • Node modules • Callback Hell vs Modular Code • Promises
What is Node.js • PlaDorm built on Chrome's JavaScript
run.me (V8 JavaScript engine) • Building fast, scalable Internet applica.ons. • Event-‐driven, non-‐blocking I/O model • Lightweight and efficient • 8000 lines of C/C++, 2000 lines of Javascript • 14 contributors. ( 2009 )
Event Loop • Single threaded • Doesn’t spend
.me wai.ng for things to finish • Sequen.ally execute a number of tasks very rapidly
Hello World • Download Node.js from h`p://nodejs.org •
Install Node.js • Open your Terminal • Type “node” • Type “console.log(‘Hello World’);
Hello World on Your Server Open Terminal and Type:
node helloworld.js
How to Load Modules. // Node Built In modules
var h`p = require('h`p'); //custom modules var customModule = require('path/to/your/module');
Node Modules h`p://nodejs.org/api/ 35+ Build In Modules
require(“h`p”); require(“path”); require(“process”); require(“os”);
How to load dependencies Package.json cheatsheet
How to load Public Modules NPM ( Node Packaged
Modules ) npmjs.org In the root folder run: “npm install” loads all dependencies from package.json //updates package.json Npm install –save moment
Asynchronous Model quiz var ac.on_one = RPS.getEvents(func.on(){ console.log(arguments);
}); var ac.on_two = RPS.getEvent(“test”, func.on(){ console.log(arguments); }); var Ac.on_three = require('events').EventEmi`er;
Callback Hell
Name Your Func.on
Reduce Nes.ng
None
Modularize!
Issac Schlueter (NPM Developer ) Write small modules that
each do one thing, and assemble them into other modules that do a bigger thing. You can't get into callback hell if you don't go there.
CommonJS • Modern JavaScript Design pa`ern. • CommonJS
module is a reusable piece of JavaScript which exports specific objects made available to any dependent code. • Unlike AMD, there are typically no func.on wrappers around such modules (so we won't see define here for example).
CommonJS to the rescue Formuploader.js
Callback hell vs Modular code
Paradigm of Doom the situa.on where code marches to
the right faster than it marches forward.
Callback Limita.ons Dependency Management can become messy
Error Handling is a Nightmare
Promises Represents a proxy for a value which
is not known at it’s crea.on .me.
Promise Fulfilled The ac.on rela.ng to the promise
succeeded
Promise Rejected The ac.on rela.ng to the promise
Failed
Promise Pending Hasn’t fulfilled or rejected yet
Promise se`led Has Fulfilled or rejected
Promise Libraries • Q • When
• RQ ( Doug Crockford ) • Deffered • Async
Q – Promise
Se`led • Use allSe`led If you want to wait
for all of the promises to either be fulfilled or rejected.
Q -‐ Error Handling
Q -‐ Progress no.fica.on
How to Create a Promise Func.on
None
Q – Promise Example
Useful Links Express -‐ Web development framework for
Node.js Tips, Libraries, Tutorials Q.Js Node Inspector