際際滷

際際滷Share a Scribd company logo
Node.js (Advanced)




      Suresh Reddy
      Senior Software Engineer
      Echidna, Inc.
Agenda

    What is Node.JS

    Using Node.JS

    Common Modules

    Streams

    Express

    Load balancing

    Competitors

    References
What is Node.JS


    JavaScript programming environment for creating highly
    scalable network programs

    Provides evented, Non-blocking I/O

    Built on top of V8



     Node.JS is bare bone and the community are making stuff
      like Express, connect etc.
What is Node.JS
Event driven programming
       $.ajax(
         url:'http://example.com/getProducts?cid=132867',
         type:'GET',
         contentType:'application/json',
         success:function(response){// doWithResponse
         },
         error:function(xhr){// Error :(
         }
    );
Using Node.JS

    Install Node.JS
       
          wget http://nodejs.org/dist/node-v0.1.96.tar.gz
      
          gunzip node-v0.1.96.tar.gz
      
          cd node
      
          ./configure
      
          make
      
          make install

    NPM
      
          Install/Publish other modules you want by doing
      
          npm install <module_name>
      
          npm publish <module_name>
Node.JS  as an interactive shell
Similar to Pythons shell


$> node
>3+1
4
> true != false
true
>.help
>.exit
Node.JS  As a server
var http = require('http');
http.createServer(function (req, res) {
    res.writeHead(200, {
        'Content-Type': 'text/plain'
    });
    res.end('Hello Worldn');
}).listen(1337, "127.0.0.1");


console.log('Server running at
127.0.0.1:1337');
Core Modules


    Processes

    Filesystem

    Networking

    Utilities


The entire list can be found at http://nodejs.org/api/
Core Modules - Processes
Node allows you to analyze your process and manage external
 process


Available Modules


    process

    child_process
Core Modules - Filesystem
Low level API to manipulate files


Available Modules


    fs

    path
Core Modules - Networking
 Available Modules

 
     net
 
     dgram
 
     http
 
     tls
 
     https
 
     dns
Express

    Basic web framework

    Runs on top of Node.js

    Provides routing and redirection helpers

    Dynamic view helpers

    Has support for session

    Focus on high performance
Hello World Express App
Streams

    Stream instances are Unix pipes

    Readable
       
         must emit data events whenever they have data to be
         read and end when the data stream is finished.

    Writable
      
         must implement the write() method to accept new data
         chunks into the stream and the end() method to instruct
         the stream that the data is finished.
Node.JS is useful for..

    Writing highly concurrent server applications

    Sharing application logic between server and client

    Peer-to-peer web applications using websockets

    Real-time applications
Load Balancing
The ability to distribute work load across multiple servers


    HAProxy

    Nginix

    Apache Http server
Other Asynchronous JavaScript
platforms


    Tornado and Twisted for Python

    Perl Object Environment for Perl

    libevent for C

    Vert.x for Java

    EventMachine for Ruby

    vibe.d for D
Links


    http://nodejs.org

    http://npmjs.org

    http://expressjs.com

    http://socket.io
Thank you

More Related Content

What's hot (20)

Building HTTP API's with NodeJS and MongoDB
Building HTTP API's with NodeJS and MongoDBBuilding HTTP API's with NodeJS and MongoDB
Building HTTP API's with NodeJS and MongoDB
donnfelker
Create a RESTful API with NodeJS, Express and MongoDB
Create a RESTful API with NodeJS, Express and MongoDBCreate a RESTful API with NodeJS, Express and MongoDB
Create a RESTful API with NodeJS, Express and MongoDB
Hengki Sihombing
Introduction to node.js by jiban
Introduction to node.js by jibanIntroduction to node.js by jiban
Introduction to node.js by jiban
Jibanananda Sana
Node js Modules and Event Emitters
Node js Modules and Event EmittersNode js Modules and Event Emitters
Node js Modules and Event Emitters
TheCreativedev Blog
Containers > VMs
Containers > VMsContainers > VMs
Containers > VMs
David Timothy Strauss
Node.js tutoria for beginner
Node.js tutoria for beginnerNode.js tutoria for beginner
Node.js tutoria for beginner
Maninder Singh
NodeJS
NodeJSNodeJS
NodeJS
Alok Guha
Node Session - 1
Node Session - 1Node Session - 1
Node Session - 1
Bhavin Shah
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
Rob O'Doherty
Best node js course
Best node js courseBest node js course
Best node js course
bestonlinecoursescoupon
Introduction to node.js aka NodeJS
Introduction to node.js aka NodeJSIntroduction to node.js aka NodeJS
Introduction to node.js aka NodeJS
JITENDRA KUMAR PATEL
NodeJS
NodeJSNodeJS
NodeJS
Predhin Sapru
Node JS Crash Course
Node JS Crash CourseNode JS Crash Course
Node JS Crash Course
Haim Michael
Node
NodeNode
Node
Arjun Raj
Node.js concurrency
Node.js concurrencyNode.js concurrency
Node.js concurrency
Giacomo Fornari
Nodejs
NodejsNodejs
Nodejs
Bhushan Patil
Node.js for beginner
Node.js for beginnerNode.js for beginner
Node.js for beginner
Sarunyhot Suwannachoti
Running Node Applications on iOS and Android
Running Node Applications on iOS and AndroidRunning Node Applications on iOS and Android
Running Node Applications on iOS and Android
ukadakal
Node js Introduction
Node js IntroductionNode js Introduction
Node js Introduction
sanskriti agarwal
Nodejs basics
Nodejs basicsNodejs basics
Nodejs basics
monikadeshmane
Building HTTP API's with NodeJS and MongoDB
Building HTTP API's with NodeJS and MongoDBBuilding HTTP API's with NodeJS and MongoDB
Building HTTP API's with NodeJS and MongoDB
donnfelker
Create a RESTful API with NodeJS, Express and MongoDB
Create a RESTful API with NodeJS, Express and MongoDBCreate a RESTful API with NodeJS, Express and MongoDB
Create a RESTful API with NodeJS, Express and MongoDB
Hengki Sihombing
Introduction to node.js by jiban
Introduction to node.js by jibanIntroduction to node.js by jiban
Introduction to node.js by jiban
Jibanananda Sana
Node js Modules and Event Emitters
Node js Modules and Event EmittersNode js Modules and Event Emitters
Node js Modules and Event Emitters
TheCreativedev Blog
Node.js tutoria for beginner
Node.js tutoria for beginnerNode.js tutoria for beginner
Node.js tutoria for beginner
Maninder Singh
Node Session - 1
Node Session - 1Node Session - 1
Node Session - 1
Bhavin Shah
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
Rob O'Doherty
Introduction to node.js aka NodeJS
Introduction to node.js aka NodeJSIntroduction to node.js aka NodeJS
Introduction to node.js aka NodeJS
JITENDRA KUMAR PATEL
Node JS Crash Course
Node JS Crash CourseNode JS Crash Course
Node JS Crash Course
Haim Michael
Running Node Applications on iOS and Android
Running Node Applications on iOS and AndroidRunning Node Applications on iOS and Android
Running Node Applications on iOS and Android
ukadakal

Viewers also liked (9)

Build App with Nodejs - YWC Workshop
Build App with Nodejs - YWC WorkshopBuild App with Nodejs - YWC Workshop
Build App with Nodejs - YWC Workshop
Sarunyhot Suwannachoti
The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014
Simona Clapan
The MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.js
The MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.jsThe MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.js
The MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.js
MongoDB
Avoiding Callback Hell From JavaScript
Avoiding Callback Hell From JavaScriptAvoiding Callback Hell From JavaScript
Avoiding Callback Hell From JavaScript
Sarunyhot Suwannachoti
The future of node
The future of nodeThe future of node
The future of node
Sarunyhot Suwannachoti
Nodejs quick start
Nodejs quick startNodejs quick start
Nodejs quick start
Guangyao Cao
MEAN Stack Warm-up
MEAN Stack Warm-upMEAN Stack Warm-up
MEAN Stack Warm-up
Troy Miles
Node ppt
Node pptNode ppt
Node ppt
Tamil Selvan R S
Anatomy of a Modern Node.js Application Architecture
Anatomy of a Modern Node.js Application Architecture Anatomy of a Modern Node.js Application Architecture
Anatomy of a Modern Node.js Application Architecture
AppDynamics
Build App with Nodejs - YWC Workshop
Build App with Nodejs - YWC WorkshopBuild App with Nodejs - YWC Workshop
Build App with Nodejs - YWC Workshop
Sarunyhot Suwannachoti
The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014The MEAN stack - SoCalCodeCamp - june 29th 2014
The MEAN stack - SoCalCodeCamp - june 29th 2014
Simona Clapan
The MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.js
The MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.jsThe MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.js
The MEAN Stack: MongoDB, ExpressJS, AngularJS and Node.js
MongoDB
Avoiding Callback Hell From JavaScript
Avoiding Callback Hell From JavaScriptAvoiding Callback Hell From JavaScript
Avoiding Callback Hell From JavaScript
Sarunyhot Suwannachoti
Nodejs quick start
Nodejs quick startNodejs quick start
Nodejs quick start
Guangyao Cao
MEAN Stack Warm-up
MEAN Stack Warm-upMEAN Stack Warm-up
MEAN Stack Warm-up
Troy Miles
Anatomy of a Modern Node.js Application Architecture
Anatomy of a Modern Node.js Application Architecture Anatomy of a Modern Node.js Application Architecture
Anatomy of a Modern Node.js Application Architecture
AppDynamics

Similar to Node js beginner (20)

Node.js Workshop - Sela SDP 2015
Node.js Workshop  - Sela SDP 2015Node.js Workshop  - Sela SDP 2015
Node.js Workshop - Sela SDP 2015
Nir Noy
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
Vikash Singh
Introduction to node.js GDD
Introduction to node.js GDDIntroduction to node.js GDD
Introduction to node.js GDD
Sudar Muthu
Node.js: A Guided Tour
Node.js: A Guided TourNode.js: A Guided Tour
Node.js: A Guided Tour
cacois
Introduction to node.js By Ahmed Assaf
Introduction to node.js  By Ahmed AssafIntroduction to node.js  By Ahmed Assaf
Introduction to node.js By Ahmed Assaf
Ahmed Assaf
Proposal
ProposalProposal
Proposal
Constantine Priemski
Nodejs
NodejsNodejs
Nodejs
dssprakash
unit 2 of Full stack web development subject
unit 2 of Full stack web development subjectunit 2 of Full stack web development subject
unit 2 of Full stack web development subject
JeneferAlan1
Node JS | Dilkash Shaikh Mahajan
Node JS | Dilkash Shaikh MahajanNode JS | Dilkash Shaikh Mahajan
Node JS | Dilkash Shaikh Mahajan
DilkashShaikhMahajan
Introduction to Node.JS
Introduction to Node.JSIntroduction to Node.JS
Introduction to Node.JS
Collaboration Technologies
NodeJS guide for beginners
NodeJS guide for beginnersNodeJS guide for beginners
NodeJS guide for beginners
Enoch Joshua
nodejs_at_a_glance.ppt
nodejs_at_a_glance.pptnodejs_at_a_glance.ppt
nodejs_at_a_glance.ppt
WalaSidhom1
Top 30 Node.js interview questions
Top 30 Node.js interview questionsTop 30 Node.js interview questions
Top 30 Node.js interview questions
techievarsity
Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...
Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...
Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...
Codemotion
Node JS Interview Question PDF By ScholarHat
Node JS Interview Question PDF By ScholarHatNode JS Interview Question PDF By ScholarHat
Node JS Interview Question PDF By ScholarHat
Scholarhat
Kalp Corporate Node JS Perfect Guide
Kalp Corporate Node JS Perfect GuideKalp Corporate Node JS Perfect Guide
Kalp Corporate Node JS Perfect Guide
Kalp Corporate
nodejs_at_a_glance, understanding java script
nodejs_at_a_glance, understanding java scriptnodejs_at_a_glance, understanding java script
nodejs_at_a_glance, understanding java script
mohammedarshadhussai4
Introduce about Nodejs - duyetdev.com
Introduce about Nodejs - duyetdev.comIntroduce about Nodejs - duyetdev.com
Introduce about Nodejs - duyetdev.com
Van-Duyet Le
Node.js 101 with Rami Sayar
Node.js 101 with Rami SayarNode.js 101 with Rami Sayar
Node.js 101 with Rami Sayar
FITC
Node36
Node36Node36
Node36
beshoy semsem
Node.js Workshop - Sela SDP 2015
Node.js Workshop  - Sela SDP 2015Node.js Workshop  - Sela SDP 2015
Node.js Workshop - Sela SDP 2015
Nir Noy
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
Vikash Singh
Introduction to node.js GDD
Introduction to node.js GDDIntroduction to node.js GDD
Introduction to node.js GDD
Sudar Muthu
Node.js: A Guided Tour
Node.js: A Guided TourNode.js: A Guided Tour
Node.js: A Guided Tour
cacois
Introduction to node.js By Ahmed Assaf
Introduction to node.js  By Ahmed AssafIntroduction to node.js  By Ahmed Assaf
Introduction to node.js By Ahmed Assaf
Ahmed Assaf
unit 2 of Full stack web development subject
unit 2 of Full stack web development subjectunit 2 of Full stack web development subject
unit 2 of Full stack web development subject
JeneferAlan1
Node JS | Dilkash Shaikh Mahajan
Node JS | Dilkash Shaikh MahajanNode JS | Dilkash Shaikh Mahajan
Node JS | Dilkash Shaikh Mahajan
DilkashShaikhMahajan
NodeJS guide for beginners
NodeJS guide for beginnersNodeJS guide for beginners
NodeJS guide for beginners
Enoch Joshua
nodejs_at_a_glance.ppt
nodejs_at_a_glance.pptnodejs_at_a_glance.ppt
nodejs_at_a_glance.ppt
WalaSidhom1
Top 30 Node.js interview questions
Top 30 Node.js interview questionsTop 30 Node.js interview questions
Top 30 Node.js interview questions
techievarsity
Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...
Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...
Meetup RomaJS - introduzione interattiva a Node.js - Luca Lanziani - Codemoti...
Codemotion
Node JS Interview Question PDF By ScholarHat
Node JS Interview Question PDF By ScholarHatNode JS Interview Question PDF By ScholarHat
Node JS Interview Question PDF By ScholarHat
Scholarhat
Kalp Corporate Node JS Perfect Guide
Kalp Corporate Node JS Perfect GuideKalp Corporate Node JS Perfect Guide
Kalp Corporate Node JS Perfect Guide
Kalp Corporate
nodejs_at_a_glance, understanding java script
nodejs_at_a_glance, understanding java scriptnodejs_at_a_glance, understanding java script
nodejs_at_a_glance, understanding java script
mohammedarshadhussai4
Introduce about Nodejs - duyetdev.com
Introduce about Nodejs - duyetdev.comIntroduce about Nodejs - duyetdev.com
Introduce about Nodejs - duyetdev.com
Van-Duyet Le
Node.js 101 with Rami Sayar
Node.js 101 with Rami SayarNode.js 101 with Rami Sayar
Node.js 101 with Rami Sayar
FITC

Node js beginner

  • 1. Node.js (Advanced) Suresh Reddy Senior Software Engineer Echidna, Inc.
  • 2. Agenda What is Node.JS Using Node.JS Common Modules Streams Express Load balancing Competitors References
  • 3. What is Node.JS JavaScript programming environment for creating highly scalable network programs Provides evented, Non-blocking I/O Built on top of V8 Node.JS is bare bone and the community are making stuff like Express, connect etc.
  • 4. What is Node.JS Event driven programming $.ajax( url:'http://example.com/getProducts?cid=132867', type:'GET', contentType:'application/json', success:function(response){// doWithResponse }, error:function(xhr){// Error :( } );
  • 5. Using Node.JS Install Node.JS wget http://nodejs.org/dist/node-v0.1.96.tar.gz gunzip node-v0.1.96.tar.gz cd node ./configure make make install NPM Install/Publish other modules you want by doing npm install <module_name> npm publish <module_name>
  • 6. Node.JS as an interactive shell Similar to Pythons shell $> node >3+1 4 > true != false true >.help >.exit
  • 7. Node.JS As a server var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.end('Hello Worldn'); }).listen(1337, "127.0.0.1"); console.log('Server running at 127.0.0.1:1337');
  • 8. Core Modules Processes Filesystem Networking Utilities The entire list can be found at http://nodejs.org/api/
  • 9. Core Modules - Processes Node allows you to analyze your process and manage external process Available Modules process child_process
  • 10. Core Modules - Filesystem Low level API to manipulate files Available Modules fs path
  • 11. Core Modules - Networking Available Modules net dgram http tls https dns
  • 12. Express Basic web framework Runs on top of Node.js Provides routing and redirection helpers Dynamic view helpers Has support for session Focus on high performance
  • 14. Streams Stream instances are Unix pipes Readable must emit data events whenever they have data to be read and end when the data stream is finished. Writable must implement the write() method to accept new data chunks into the stream and the end() method to instruct the stream that the data is finished.
  • 15. Node.JS is useful for.. Writing highly concurrent server applications Sharing application logic between server and client Peer-to-peer web applications using websockets Real-time applications
  • 16. Load Balancing The ability to distribute work load across multiple servers HAProxy Nginix Apache Http server
  • 17. Other Asynchronous JavaScript platforms Tornado and Twisted for Python Perl Object Environment for Perl libevent for C Vert.x for Java EventMachine for Ruby vibe.d for D
  • 18. Links http://nodejs.org http://npmjs.org http://expressjs.com http://socket.io