SlideShare une entreprise Scribd logo
1  sur  16
Node.JsNode.Js
Ayush Mishra
Knoldus Software LLP
Ayush Mishra
Knoldus Software LLP
Topics CoveredTopics Covered
1. What is Node.js
2. Features Of Node.js
3. Testing Node Installation
4. Create HTTP server
5. URL Module
5. Event-Driven and Asynchronous Platform
6. Demo Application
1. What is Node.js
2. Features Of Node.js
3. Testing Node Installation
4. Create HTTP server
5. URL Module
5. Event-Driven and Asynchronous Platform
6. Demo Application
What is Node.jsWhat is Node.js
Created by Ryan Dahl strating in 2009.
Javascript on the server.
A software platform that is used for easily building fast, scalable network
applications (especially server-side) applications.
Built on Google V8's Engine.
Not executed in a web browser. Executed as a server-side JavaScript application.
Created by Ryan Dahl strating in 2009.
Javascript on the server.
A software platform that is used for easily building fast, scalable network
applications (especially server-side) applications.
Built on Google V8's Engine.
Not executed in a web browser. Executed as a server-side JavaScript application.
Developers can write web applications in one language.
Uses event-driven, non-blocking I/O model for building scalable network application.
Node.js ships with a lot of useful modules. Thus, Node.js is really two things: a runtime
environment and a library.
Uses npm (Node Package Manager) utility to install third party node modules.
Node.js contains a built-in HTTP server library:-making it possible to run a web server
without the use of external software, such as Apache and allowing more control of how
the web server works.
Developers can write web applications in one language.
Uses event-driven, non-blocking I/O model for building scalable network application.
Node.js ships with a lot of useful modules. Thus, Node.js is really two things: a runtime
environment and a library.
Uses npm (Node Package Manager) utility to install third party node modules.
Node.js contains a built-in HTTP server library:-making it possible to run a web server
without the use of external software, such as Apache and allowing more control of how
the web server works.
FeaturesFeatures
Testing Node InstallationTesting Node Installation
1)Create a file 'hello.js'
2) console.log(“Hello Knoldus”)
1)Create a file 'hello.js'
2) console.log(“Hello Knoldus”)
HTTP ServerHTTP Server
http.createServer([requestListener])
server.listen(port, [hostname], [callback])
server.listen(path, [callback])
server.close()
http.createServer([requestListener])
server.listen(port, [hostname], [callback])
server.listen(path, [callback])
server.close()
HTTP ServerHTTP Server
var http = require('http');
var content = '<html><body><p>Hello World</p><script type=”text/javascript”'
+'>alert(“Hi!”);</script></body></html>';
http.createServer(function (request, response) {
if (request.url === '/') {
response.end(content);
}else if (request.url === '/login') {
response.end('Welcome To Login Page');
}else{
response.end('Wrong URL');
}
}).listen(8080, 'localhost');
console.log('Server running at http://localhost:8080/.');
var http = require('http');
var content = '<html><body><p>Hello World</p><script type=”text/javascript”'
+'>alert(“Hi!”);</script></body></html>';
http.createServer(function (request, response) {
if (request.url === '/') {
response.end(content);
}else if (request.url === '/login') {
response.end('Welcome To Login Page');
}else{
response.end('Wrong URL');
}
}).listen(8080, 'localhost');
console.log('Server running at http://localhost:8080/.');
 Call require('url') to use it.
 url.parse(urlStr, parseQueryString = false): Parses a URL string and returns an object
which contains the various parts of the URL.
 url.format(urlObj): Accepts a parsed URL object and returns the string. Does the
reverse of url.parse().
 url.resolve(from, to): Resolves a given URL relative to a base URL as a browser
would for an anchor tag.
 Call require('url') to use it.
 url.parse(urlStr, parseQueryString = false): Parses a URL string and returns an object
which contains the various parts of the URL.
 url.format(urlObj): Accepts a parsed URL object and returns the string. Does the
reverse of url.parse().
 url.resolve(from, to): Resolves a given URL relative to a base URL as a browser
would for an anchor tag.
URLURL
URLURL
Event-Driven and Asynchronous PlatformEvent-Driven and Asynchronous Platform
$.post('/resource.json', function (data) { // I/O doesn’t block execution
console.log(data);
});
Console.log(“hello”)
var data = $.post('/resource.json');//I/O blocks execution
console.log(data);
Console.log(“hello”)
$.post('/resource.json', function (data) { // I/O doesn’t block execution
console.log(data);
});
Console.log(“hello”)
var data = $.post('/resource.json');//I/O blocks execution
console.log(data);
Console.log(“hello”)
1) var result = database.query("SELECT * FROM employee");
console.log("Hello World");
2) database.query("SELECT * FROM employee", function(rows) {
var result = rows;
});
console.log("Hello World");
3)var http = require("http");
function onRequest(request, response) {
console.log("Request received.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
http.createServer(onRequest).listen(8888);
console.log("Server has started.");
1) var result = database.query("SELECT * FROM employee");
console.log("Hello World");
2) database.query("SELECT * FROM employee", function(rows) {
var result = rows;
});
console.log("Hello World");
3)var http = require("http");
function onRequest(request, response) {
console.log("Request received.");
response.writeHead(200, {"Content-Type": "text/plain"});
response.write("Hello World");
response.end();
}
http.createServer(onRequest).listen(8888);
console.log("Server has started.");
Login ApplicationLogin Application
https://github.com/knoldus/Node.js_UserLogin_Templatehttps://github.com/knoldus/Node.js_UserLogin_Template
ThanksThanks

Contenu connexe

Tendances

Google App Engine With Java And Groovy
Google App Engine With Java And GroovyGoogle App Engine With Java And Groovy
Google App Engine With Java And GroovyKen Kousen
 
Asynchronous web apps with the Play Framework 2.0
Asynchronous web apps with the Play Framework 2.0Asynchronous web apps with the Play Framework 2.0
Asynchronous web apps with the Play Framework 2.0Oscar Renalias
 
AWS Infrastructure as Code - September 2016 Webinar Series
AWS Infrastructure as Code - September 2016 Webinar SeriesAWS Infrastructure as Code - September 2016 Webinar Series
AWS Infrastructure as Code - September 2016 Webinar SeriesAmazon Web Services
 
Play + scala + reactive mongo
Play + scala + reactive mongoPlay + scala + reactive mongo
Play + scala + reactive mongoMax Kremer
 
Using OpenStack With Fog
Using OpenStack With FogUsing OpenStack With Fog
Using OpenStack With FogMike Hagedorn
 
06 integrate elasticsearch
06 integrate elasticsearch06 integrate elasticsearch
06 integrate elasticsearchErhwen Kuo
 
Meetup bangalore 9_novupdated
Meetup bangalore 9_novupdatedMeetup bangalore 9_novupdated
Meetup bangalore 9_novupdatedD.Rajesh Kumar
 
(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...
(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...
(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...Amazon Web Services
 
Drupal 8 + Elasticsearch + Docker
Drupal 8 + Elasticsearch + DockerDrupal 8 + Elasticsearch + Docker
Drupal 8 + Elasticsearch + DockerRoald Umandal
 
05 integrate redis
05 integrate redis05 integrate redis
05 integrate redisErhwen Kuo
 
04 integrate entityframework
04 integrate entityframework04 integrate entityframework
04 integrate entityframeworkErhwen Kuo
 
10 performance and scalability secrets of ASP.NET websites
10 performance and scalability secrets of ASP.NET websites10 performance and scalability secrets of ASP.NET websites
10 performance and scalability secrets of ASP.NET websitesoazabir
 
Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018
Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018
Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018Chris Gillum
 
03 integrate webapisignalr
03 integrate webapisignalr03 integrate webapisignalr
03 integrate webapisignalrErhwen Kuo
 
SPSTC - PowerShell - Through the SharePoint Looking Glass
SPSTC - PowerShell - Through the SharePoint Looking GlassSPSTC - PowerShell - Through the SharePoint Looking Glass
SPSTC - PowerShell - Through the SharePoint Looking GlassBrian Caauwe
 
(DEV301) Automating AWS with the AWS CLI
(DEV301) Automating AWS with the AWS CLI(DEV301) Automating AWS with the AWS CLI
(DEV301) Automating AWS with the AWS CLIAmazon Web Services
 
Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)Yevgeniy Brikman
 
Tips and Tricks For Faster Asp.NET and MVC Applications
Tips and Tricks For Faster Asp.NET and MVC ApplicationsTips and Tricks For Faster Asp.NET and MVC Applications
Tips and Tricks For Faster Asp.NET and MVC ApplicationsSarvesh Kushwaha
 
Intoduction to Play Framework
Intoduction to Play FrameworkIntoduction to Play Framework
Intoduction to Play FrameworkKnoldus Inc.
 

Tendances (20)

Google App Engine With Java And Groovy
Google App Engine With Java And GroovyGoogle App Engine With Java And Groovy
Google App Engine With Java And Groovy
 
Firebase slide
Firebase slideFirebase slide
Firebase slide
 
Asynchronous web apps with the Play Framework 2.0
Asynchronous web apps with the Play Framework 2.0Asynchronous web apps with the Play Framework 2.0
Asynchronous web apps with the Play Framework 2.0
 
AWS Infrastructure as Code - September 2016 Webinar Series
AWS Infrastructure as Code - September 2016 Webinar SeriesAWS Infrastructure as Code - September 2016 Webinar Series
AWS Infrastructure as Code - September 2016 Webinar Series
 
Play + scala + reactive mongo
Play + scala + reactive mongoPlay + scala + reactive mongo
Play + scala + reactive mongo
 
Using OpenStack With Fog
Using OpenStack With FogUsing OpenStack With Fog
Using OpenStack With Fog
 
06 integrate elasticsearch
06 integrate elasticsearch06 integrate elasticsearch
06 integrate elasticsearch
 
Meetup bangalore 9_novupdated
Meetup bangalore 9_novupdatedMeetup bangalore 9_novupdated
Meetup bangalore 9_novupdated
 
(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...
(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...
(APP306) Using AWS CloudFormation for Deployment and Management at Scale | AW...
 
Drupal 8 + Elasticsearch + Docker
Drupal 8 + Elasticsearch + DockerDrupal 8 + Elasticsearch + Docker
Drupal 8 + Elasticsearch + Docker
 
05 integrate redis
05 integrate redis05 integrate redis
05 integrate redis
 
04 integrate entityframework
04 integrate entityframework04 integrate entityframework
04 integrate entityframework
 
10 performance and scalability secrets of ASP.NET websites
10 performance and scalability secrets of ASP.NET websites10 performance and scalability secrets of ASP.NET websites
10 performance and scalability secrets of ASP.NET websites
 
Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018
Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018
Advanced Durable Functions - Serverless Meetup Tokyo - Feb 2018
 
03 integrate webapisignalr
03 integrate webapisignalr03 integrate webapisignalr
03 integrate webapisignalr
 
SPSTC - PowerShell - Through the SharePoint Looking Glass
SPSTC - PowerShell - Through the SharePoint Looking GlassSPSTC - PowerShell - Through the SharePoint Looking Glass
SPSTC - PowerShell - Through the SharePoint Looking Glass
 
(DEV301) Automating AWS with the AWS CLI
(DEV301) Automating AWS with the AWS CLI(DEV301) Automating AWS with the AWS CLI
(DEV301) Automating AWS with the AWS CLI
 
Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)Node.js vs Play Framework (with Japanese subtitles)
Node.js vs Play Framework (with Japanese subtitles)
 
Tips and Tricks For Faster Asp.NET and MVC Applications
Tips and Tricks For Faster Asp.NET and MVC ApplicationsTips and Tricks For Faster Asp.NET and MVC Applications
Tips and Tricks For Faster Asp.NET and MVC Applications
 
Intoduction to Play Framework
Intoduction to Play FrameworkIntoduction to Play Framework
Intoduction to Play Framework
 

Similaire à An Overview of Node.js

Node.js introduction
Node.js introductionNode.js introduction
Node.js introductionParth Joshi
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.jsVikash Singh
 
Java script at backend nodejs
Java script at backend   nodejsJava script at backend   nodejs
Java script at backend nodejsAmit Thakkar
 
Getting started with node JS
Getting started with node JSGetting started with node JS
Getting started with node JSHamdi Hmidi
 
Play Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and ScalaPlay Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and ScalaYevgeniy Brikman
 
Node.js Workshop - Sela SDP 2015
Node.js Workshop  - Sela SDP 2015Node.js Workshop  - Sela SDP 2015
Node.js Workshop - Sela SDP 2015Nir Noy
 
Scalable network applications, event-driven - Node JS
Scalable network applications, event-driven - Node JSScalable network applications, event-driven - Node JS
Scalable network applications, event-driven - Node JSCosmin Mereuta
 
Day in a life of a node.js developer
Day in a life of a node.js developerDay in a life of a node.js developer
Day in a life of a node.js developerEdureka!
 
Day In A Life Of A Node.js Developer
Day In A Life Of A Node.js DeveloperDay In A Life Of A Node.js Developer
Day In A Life Of A Node.js DeveloperEdureka!
 
node.js: Javascript's in your backend
node.js: Javascript's in your backendnode.js: Javascript's in your backend
node.js: Javascript's in your backendDavid Padbury
 
Introduction to node.js GDD
Introduction to node.js GDDIntroduction to node.js GDD
Introduction to node.js GDDSudar Muthu
 
Nodejs Intro - Part2 Introduction to Web Applications
Nodejs Intro - Part2 Introduction to Web ApplicationsNodejs Intro - Part2 Introduction to Web Applications
Nodejs Intro - Part2 Introduction to Web ApplicationsBudh Ram Gurung
 

Similaire à An Overview of Node.js (20)

Node.js introduction
Node.js introductionNode.js introduction
Node.js introduction
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
5.node js
5.node js5.node js
5.node js
 
Java script at backend nodejs
Java script at backend   nodejsJava script at backend   nodejs
Java script at backend nodejs
 
Getting started with node JS
Getting started with node JSGetting started with node JS
Getting started with node JS
 
Play Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and ScalaPlay Framework: async I/O with Java and Scala
Play Framework: async I/O with Java and Scala
 
hacking with node.JS
hacking with node.JShacking with node.JS
hacking with node.JS
 
NodeJS
NodeJSNodeJS
NodeJS
 
Node.js Workshop - Sela SDP 2015
Node.js Workshop  - Sela SDP 2015Node.js Workshop  - Sela SDP 2015
Node.js Workshop - Sela SDP 2015
 
Scalable network applications, event-driven - Node JS
Scalable network applications, event-driven - Node JSScalable network applications, event-driven - Node JS
Scalable network applications, event-driven - Node JS
 
Day in a life of a node.js developer
Day in a life of a node.js developerDay in a life of a node.js developer
Day in a life of a node.js developer
 
Day In A Life Of A Node.js Developer
Day In A Life Of A Node.js DeveloperDay In A Life Of A Node.js Developer
Day In A Life Of A Node.js Developer
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
Proposal
ProposalProposal
Proposal
 
Android networking-2
Android networking-2Android networking-2
Android networking-2
 
node.js: Javascript's in your backend
node.js: Javascript's in your backendnode.js: Javascript's in your backend
node.js: Javascript's in your backend
 
Introduction to node.js GDD
Introduction to node.js GDDIntroduction to node.js GDD
Introduction to node.js GDD
 
Introduction to Node.JS
Introduction to Node.JSIntroduction to Node.JS
Introduction to Node.JS
 
Node js getting started
Node js getting startedNode js getting started
Node js getting started
 
Nodejs Intro - Part2 Introduction to Web Applications
Nodejs Intro - Part2 Introduction to Web ApplicationsNodejs Intro - Part2 Introduction to Web Applications
Nodejs Intro - Part2 Introduction to Web Applications
 

Dernier

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 

Dernier (20)

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 

An Overview of Node.js

  • 1. Node.JsNode.Js Ayush Mishra Knoldus Software LLP Ayush Mishra Knoldus Software LLP
  • 2. Topics CoveredTopics Covered 1. What is Node.js 2. Features Of Node.js 3. Testing Node Installation 4. Create HTTP server 5. URL Module 5. Event-Driven and Asynchronous Platform 6. Demo Application 1. What is Node.js 2. Features Of Node.js 3. Testing Node Installation 4. Create HTTP server 5. URL Module 5. Event-Driven and Asynchronous Platform 6. Demo Application
  • 3. What is Node.jsWhat is Node.js Created by Ryan Dahl strating in 2009. Javascript on the server. A software platform that is used for easily building fast, scalable network applications (especially server-side) applications. Built on Google V8's Engine. Not executed in a web browser. Executed as a server-side JavaScript application. Created by Ryan Dahl strating in 2009. Javascript on the server. A software platform that is used for easily building fast, scalable network applications (especially server-side) applications. Built on Google V8's Engine. Not executed in a web browser. Executed as a server-side JavaScript application.
  • 4. Developers can write web applications in one language. Uses event-driven, non-blocking I/O model for building scalable network application. Node.js ships with a lot of useful modules. Thus, Node.js is really two things: a runtime environment and a library. Uses npm (Node Package Manager) utility to install third party node modules. Node.js contains a built-in HTTP server library:-making it possible to run a web server without the use of external software, such as Apache and allowing more control of how the web server works. Developers can write web applications in one language. Uses event-driven, non-blocking I/O model for building scalable network application. Node.js ships with a lot of useful modules. Thus, Node.js is really two things: a runtime environment and a library. Uses npm (Node Package Manager) utility to install third party node modules. Node.js contains a built-in HTTP server library:-making it possible to run a web server without the use of external software, such as Apache and allowing more control of how the web server works. FeaturesFeatures
  • 5. Testing Node InstallationTesting Node Installation 1)Create a file 'hello.js' 2) console.log(“Hello Knoldus”) 1)Create a file 'hello.js' 2) console.log(“Hello Knoldus”)
  • 7. http.createServer([requestListener]) server.listen(port, [hostname], [callback]) server.listen(path, [callback]) server.close() http.createServer([requestListener]) server.listen(port, [hostname], [callback]) server.listen(path, [callback]) server.close() HTTP ServerHTTP Server
  • 8.
  • 9. var http = require('http'); var content = '<html><body><p>Hello World</p><script type=”text/javascript”' +'>alert(“Hi!”);</script></body></html>'; http.createServer(function (request, response) { if (request.url === '/') { response.end(content); }else if (request.url === '/login') { response.end('Welcome To Login Page'); }else{ response.end('Wrong URL'); } }).listen(8080, 'localhost'); console.log('Server running at http://localhost:8080/.'); var http = require('http'); var content = '<html><body><p>Hello World</p><script type=”text/javascript”' +'>alert(“Hi!”);</script></body></html>'; http.createServer(function (request, response) { if (request.url === '/') { response.end(content); }else if (request.url === '/login') { response.end('Welcome To Login Page'); }else{ response.end('Wrong URL'); } }).listen(8080, 'localhost'); console.log('Server running at http://localhost:8080/.');
  • 10.  Call require('url') to use it.  url.parse(urlStr, parseQueryString = false): Parses a URL string and returns an object which contains the various parts of the URL.  url.format(urlObj): Accepts a parsed URL object and returns the string. Does the reverse of url.parse().  url.resolve(from, to): Resolves a given URL relative to a base URL as a browser would for an anchor tag.  Call require('url') to use it.  url.parse(urlStr, parseQueryString = false): Parses a URL string and returns an object which contains the various parts of the URL.  url.format(urlObj): Accepts a parsed URL object and returns the string. Does the reverse of url.parse().  url.resolve(from, to): Resolves a given URL relative to a base URL as a browser would for an anchor tag. URLURL
  • 12. Event-Driven and Asynchronous PlatformEvent-Driven and Asynchronous Platform
  • 13. $.post('/resource.json', function (data) { // I/O doesn’t block execution console.log(data); }); Console.log(“hello”) var data = $.post('/resource.json');//I/O blocks execution console.log(data); Console.log(“hello”) $.post('/resource.json', function (data) { // I/O doesn’t block execution console.log(data); }); Console.log(“hello”) var data = $.post('/resource.json');//I/O blocks execution console.log(data); Console.log(“hello”)
  • 14. 1) var result = database.query("SELECT * FROM employee"); console.log("Hello World"); 2) database.query("SELECT * FROM employee", function(rows) { var result = rows; }); console.log("Hello World"); 3)var http = require("http"); function onRequest(request, response) { console.log("Request received."); response.writeHead(200, {"Content-Type": "text/plain"}); response.write("Hello World"); response.end(); } http.createServer(onRequest).listen(8888); console.log("Server has started."); 1) var result = database.query("SELECT * FROM employee"); console.log("Hello World"); 2) database.query("SELECT * FROM employee", function(rows) { var result = rows; }); console.log("Hello World"); 3)var http = require("http"); function onRequest(request, response) { console.log("Request received."); response.writeHead(200, {"Content-Type": "text/plain"}); response.write("Hello World"); response.end(); } http.createServer(onRequest).listen(8888); console.log("Server has started.");

Notes de l'éditeur

  1. If you want to create more serious frontend stuff or you want to add more feature in your web page, we use jquery and prototype like this, whenever we felt like spicing up web page But this is still frontend stuff. Here you are just a javascript user, javascript developer. That&amp;apos;s why node.js is created, javascript on the server. Node uses V8 , the virtual machine that powers Google Chrome, for server-side pro- gramming IT is build on google chrome runtime. It uses v8, the same run time environment, that google chrome uses. Actually reason is. Javasript is one context, which lives in browser. It defines only what you can do with the language. It does not say much about what lanuage itself can do. Node.js is anothe context. It allows you to run javascript as backend code outside a browser.In order to execute, javascript, that you intend to run in backend, it needs to be well interpreted and well execute , this is what node.js does with the use of v8 virtual macine. V8 gives a huge boost performance and it is developed by google. Because it prefers straight compilation into native machine code. And The compiled code is additionally optimized (and re-optimized) dynamically at runtime .
  2. npm is the official package manager for Node.js. As of Node.js version 0.6.3, npm is bundled and installed automatically with the environment.[1] npm runs through the command line and manages dependencies for an application. It also allows users to install Node.js applications that are available on the npm registry. npm is written entirely in JavaScript, and runs on the Node.js platform. The Node Package Manager (npm; https://github.com/isaacs/npm) is a util- ity that comes bundled with Node. It offers a great deal of functionality, allowing you to easily install third-party Node modules and globally publish any Node modules
  3. Node.js contains a built-in HTTP server library:-making it possible to run a web server without the use of external software, such asApache  You can use use https server by requiring http module. http module ships with node.js and
  4. Asynchronous and evented: the browser:- Node provides an event-driven and asynchronous platform for server-side JavaScript. It brings JavaScript to the server in much the same way a browser brings JavaScript to the client. Node.js is evet driven and non-blocking while handling i/o operation. event driven programming means where flow of program is detrmined by events such as mouse click, key press As we know Synchronous mode, the thread waits for I/O to complete before proceeding further. The thread will be in a “wait” state. However in the case of asynchronous operation, the thread will not wait for I/O to finish. It will continue with the processing till it gets interrupted Since node.js runs in a single thread, so you should use asychronus style of coading.
  5. Here you can see operation does not block execution. Here atually what is happening. Response from reourese.json would be stored in data. After that console.log function will execute. It will not execute untill it is ready. Browser is single threaded. If this request took 2 mins or 3 mins, any other event happening would have to wait for completion of this request. You can image a poor user experince, animation can be paused. Thankfully it will not happen in case of node.js. When any operation happens in the browser, it will happen out side of the event loop and then event is emitted when this operation is finished. This is called call back function. This will happen asynchronusly. It will not bloack the script execution. It will allow browser to be responsive to client and handle a lot of interactivity on the page
  6. it&amp;apos;s just an example. The first line queries a database for lots of rows, the second line puts &amp;quot;Hello World&amp;quot; to the console. Let&amp;apos;s assume that the database query is really slow, that it has to read an awful lot of rows, which takes several seconds. The way we have written this code, the JavaScript interpreter of Node.js first has to read the complete result set from the database, and then it can execute the console.log()function. The execution model of Node.js is different - there is only one single process. If there is a slow database query somewhere in this process, this affects the whole process - everything comes to a halt until the slow query has finished. We can understand this concept by analyzing a rewritten version of our problematic code: