1 / 60

Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js Training | Edureka

This Edureka "Node.js tutorial" will help you to learn the Node.js fundamentals and how to create an application in Node.js. Node.js is an open-source, cross-platform JavaScript runtime environment for developing a diverse variety of server tools and applications. Below are the topics covered in this tutorial: <br><br>1) Client Server Architecture <br>2) Limitations of Multi-Threaded Model <br>3) What is Node.js? <br>4) Features of Node.js <br>5) Node.js Installation <br>6) Blocking Vs. Non u2013 Blocking I/O <br>7) Creating Node.js Program <br>8) Node.js Modules <br>9) Demo u2013 Grocery List Web Application using Node.js

EdurekaIN
Download Presentation

Node.js Tutorial for Beginners | Node.js Web Application Tutorial | Node.js Training | Edureka

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Webpage EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  2. Agenda ❖ Client Server Architecture ❖ Limitations of Multi–Threaded Model ❖ What is Node.js? ❖ Features of Node.js ❖ Node.js Installation ❖ Blocking Vs. Non – Blocking I/O ❖ Creating Node.js First Program ❖ Node.js Modules ❖ Demo – Grocery List Web Application using Node.js EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  3. Client – Server Architecture EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  4. Client Server Architecture Client 1 Client 2 Server Database Client 3 EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  5. Traditional Multi-Threaded Model User HTTP Request A Read Request Read Response Thread User HTTP Request B Assign Thread for A Handle Request A Thread User HTTP Request C Assign Thread for B Handle Request B Thread User HTTP Request D Assign Thread for C Handle Request C EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  6. Limitations of Multi – Threaded Approach EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  7. Limitations of Multi-Threaded Models Wants to Update Wants to Update Updating Resources Thread B Thread A Thread C Shared Resources ➢ In a multi-threaded HTTP server, for each and every request that the server receives, it creates a separate thread which handles that request ➢ If a request acquires a lock in the shared resource and it is ‘exclusive’, it will affect result of other requests EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  8. Limitations of Multi-Threaded Models For thousands of simultaneous requests, spawning threads for all processes would not achieve the desired scalability Scalability High chances of deadlock if application is not designed properly Deadlock Complex Web Servers need to handle thousands of HTTP requests. So, many threads may have to wait for network operations EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  9. What is Node.js ? EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  10. What is Node.js? ➢Node.js is an open source runtime environment for server-side and networking applications and is single threaded. ➢Uses Google JavaScript V8 Engine to execute code. ➢It is cross platform environment and can run on OS X, Microsoft Windows, Linux, FreeBSD, NonStop and IBM. ➢Provides an event driven architecture and non blocking I/O that is optimized and scalable. N O D E EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  11. Features of Node.js EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  12. Features of Node.js 1. Asynchronous Asynchronous request response Caller Recipient Event Driven callback Very Fast Asynchronous Model Scalable ➢ When request is made to server, instead of waiting for the request to complete, server continues to process other requests ➢ When request processing completes, the response is sent to caller using callback mechanism EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  13. Features of Node.js 2. Single Threaded and Event Driven: Event Emitters Thread Pool Asynchronous File System Event Driven Network Event Loop (Single - threaded) Process Very Fast Event Queue Other Scalable ➢ When request is made to server, instead of waiting for the request to complete, server continues to process other requests ➢ When request processing completes, the response is sent to caller using callback mechanism EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  14. Features of Node.js 3. Very Fast Asynchronous Being built on Google Chrome's V8 JavaScript Engine, Node.js library is very fast in code execution. Event Driven Very Fast 4. Single Threaded but Highly Scalable Scalable Node.js is highly scalable because event mechanism helps the server to respond in a non- blocking way. EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  15. Node.js Installation EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  16. Node.js Installation Go to https://nodejs.org/en/ 1 Download and Install 2 EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  17. Node.js Installation Open node.js command prompt 3 ➢ node –version Check the version of Node.js installed EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  18. Creating Your First Node.js Program EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  19. Node.js First Program 1 Create a Directory: mkdir node_example 1 2 Create a File: first_example.js 2 3 Go to the node_example directory 3 Execute the java script file: node first_example.js 4 4 EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  20. Simple Web Application Example EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  21. Simple Web Application Example Example: Importing Module: ‘require’ is used to load a Node.js modules. 1 Creating Server ➢ Used to create web server object ➢ Function (request, response) is called once for every HTTP request to the server, so it's called the request handler. Example: 2 Example: listen(<port_no>) Bind the server instance for listening to a particular port. 3 EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  22. Simple Web Application Example Import HTTP Module 1 Define Port No. 2 Creating Server Instance 3 Sending HTTP Header 4 Sending Data 5 Binding Server Instance with the Port No. 3000 6 EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  23. Simple Web Application Example EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  24. Blocking vs Non - Blocking EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  25. Blocking vs Non–Blocking I/O ➢ Blocking is when the execution of additional JavaScript in the Node.js process must wait until a non-JavaScript operation completes. ➢ "I/O" refers primarily to interaction with the system's disk and network supported by libuv. More method will execute asynchronously (non-blocking way) More methods will be blocked till the read method is not executed EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  26. Blocking vs Non–Blocking I/O Non – Blocking Example: EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  27. Blocking vs Non–Blocking I/O Blocking Example: CONCLUSION: ➢ In case of Asynchronous (non-blocking ), once file I/O is complete, it will call the callback function ➢ This allows Node.js to be scalable and process large number of request without worrying about blocking I/O EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  28. Node.js Modules 01 02 03 04 05 06 NPM GLOBALS FILE SYSTEM CALLBACKS EVENT HTTP EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  29. NPM ➢ NPM stands for Node Package Manager ➢ Provides online repositories for node.js packages/modules ➢ Provides command line utility to install Node.js packages along with version management and dependency management. EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  30. NPM Install all the modules as specified in package.json npm install Install Module using npm npm install <Module Name> Install dependency globally npm install <Module Name> -g EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  31. Basic Concepts: 01 02 03 04 05 06 NPM GLOBALS FILE SYSTEM CALLBACKS EVENT HTTP EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  32. Global Objects These objects are available in all modules and therefore, are referred as Global Objects __dirname specifies the name of the directory that currently contains the code. __filename specifies the name of the file that currently contains the code. EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  33. Global Objects A timer in Node.js is an internal construct that calls a given function after a certain period of time. setTimeout(callback, delay[, ...args]) ➢ Schedules execution of a one-time callback after delay milliseconds ➢ Returns a Timeout for use with clearTimeout( ) setInterval(callback, delay[, ...args]) ➢ Schedules repeated execution of callback every delay milliseconds. ➢ Returns a Timeout for use with clearTimeout( ) setImmediate(callback, [,..args]) ➢ Schedules an immediate execution of the callback after I/O events' callbacks but before setTimeout() and setInterval() timers are triggered. ➢ Returns an Immediate for use with clearImmediate(). EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  34. Global Objects output EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  35. Node.js Modules 01 02 03 04 05 06 NPM GLOBALS FILE SYSTEM CALLBACKS EVENT HTTP EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  36. File System File I/O is provided by simple wrappers around standard POSIX functions. For importing File System Module (fs), we use: var fs = require("fs"); Important Note: All methods have asynchronous and synchronous forms 1 var fs = require("fs"); Asynchronous Forms // Asynchronous read fs.readFile(‘test.txt', function (err, data) { }); FS Methods // Synchronous read var data = fs.readFileSync('input.txt'); Synchronous Forms EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  37. File System Important Note: 2 The asynchronous form always takes a completion callback as its last argument. Arg 1 var fs = require("fs"); Callback As Last Arg. // Asynchronous read Arg 2 fs.readFile(‘test.txt’, function (err, data) { if (err) { FS Methods Arg 3 return console.error(err); } console.log(data.toString()); Callback Method (last argument) }); EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  38. File System Important Note: First argument in completion callback is always reserved for an exception 3 Arg 1: exception var fs = require("fs"); Reserved for exception // Asynchronous read Arg 2 fs.readFile(‘test.txt’, function (err, data) { Callback Method if (err) { Arg 3 returns null or undefined (successful completion) return console.error(err); } console.log(data.toString()); Arg N }); EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  39. Some Methods in File System Module – Open() ➢ var fs = require(‘fs’); Open File Asynchronously fs.open( path, flags[, mode], callback ) Open File Synchronously fs.openSync( path, flags[, mode] ) Closing File fs.close( fd, callback ) Arguments Path < string > Flags < string > Mode < integer > Callback < function > Description Path of the file Access Modifiers sets the permission and sticky bits, but only if the file was created Callback signature - function(err, fd) EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  40. Flag Modes in Open Method Modes Description r Open file for reading. an exception occurs if the file does not exist r+ Open file for reading and writing. Exception: if the file does not exist w Open file for writing. The file is created ( if it does not exist) or truncated (if it exists) wx Like 'w' but fails if path exists w+ Open file for reading and writing. File is created (if it does not exist) or truncated (if it exists) wx+ Same as 'w+' but fails if path exists a Open file for appending. The file is created if it does not exist ax Like 'a' but fails if path exists a+ open file for reading and appending. the file is created if it does not exist. ax+ Like 'a+' but fails if path exists EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  41. Some Methods in File System Module – Read() Read Content of a File into Buffer read(fd, buffer, offset, length, position, callback) Reads File Asynchronously readFile(file[, options], callback) Reads File Synchronously readFileSync(file[, options]) Arguments fd < integer > Description File Descriptor buffer <string | Buffer | Unit8Array > The buffer that the data will be written to. offset < integer > Offset in the buffer to start writing at. length < integer > Specifies the number of bytes to read. position < integer > Specifies where to begin reading from in the file Callback < function > Read Callback signature - function(err, bytesRead, buffer) EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  42. Some Methods in File System Module – Write() Writes into a File Asynchronously writeFile(file, data[, options], callback) Writes into a File Synchronously writeFileSync(file, data[, options]) Arguments Description File Filename or File Descriptor Data The buffer that the data will be written to. Options: Encoding, Mode or flag Callback < function > Callback signature - function(err, bytesRead, buffer) EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  43. Node.js Modules 01 02 03 04 05 06 NPM GLOBALS FILE SYSTEM CALLBACKS EVENT HTTP EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  44. Some Methods in File System Module – Write() Callback is an asynchronous equivalent for a function and is called at the completion of each task Callback: will execute after file read is complete Output: EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  45. Node.js Modules 01 02 03 04 05 06 NPM GLOBALS FILE SYSTEM CALLBACKS EVENT HTTP EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  46. Events ➢ Node.js follows event-driven architecture where certain objects (called "emitters") periodically emit named events which further invokes the listeners (function). ➢ Node.js provide concurrency by using the concept of events and callbacks ➢ All objects that emit events are instances of the EventEmitter class. Importing ‘events’ module var event = require(‘events’); var eventEmitter = event.EventEmitter(); Object of EventEmitter Class Registering listeners eventEmitter.on(‘event’, eventHandler) eventEmitter.emit(‘event’) Trigger event EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  47. Events Import Events Module Creating object of EventEmitter Emitting event Registering Listener and defining event handler OUTPUT EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  48. Node.js Modules 01 02 03 04 05 06 NPM GLOBALS FILE SYSTEM CALLBACKS EVENT HTTP EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  49. Web Application Architecture Mobile Browser Application Server Database Web Web Server Client Browser Client Client Client External File System File System Application Client Server Business Layer Data Layer Serve the request Made by client and pass the response contains application utilized by web server to do required processing. Makes HTTP Request to the server Consists of Database and other data storage EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

  50. HTTP Import Required Modules Creating Server Parse the fetched URL to get pathname Request file to be read from file system (index.html) Creating Header with content type as text or HTML Generating Response Listening to port: 3000 EDUREKA NODE JS CERTIFICATION TRAINING www.edureka.co/mastering-node-js

More Related