+ All Categories
Home > Software > Introduction to NodeJS

Introduction to NodeJS

Date post: 16-Jan-2017
Category:
Upload: edy-segura
View: 396 times
Download: 0 times
Share this document with a friend
18
Transcript
Page 1: Introduction to NodeJS
Page 2: Introduction to NodeJS

What is NodeJS?

Page 3: Introduction to NodeJS

NodeJS is a JavaScript runtime built on Chrome's V8 JavaScript engine that runs JavaScript without

browser

Page 4: Introduction to NodeJS

Why should I want this?

Page 5: Introduction to NodeJS
Page 6: Introduction to NodeJS

Using an event-driven, non-blocking I/O model, NodeJS is lightweight and efficient with very little

overhead

Page 7: Introduction to NodeJS
Page 8: Introduction to NodeJS
Page 9: Introduction to NodeJS
Page 10: Introduction to NodeJS
Page 11: Introduction to NodeJS

- Highly scalable web servers for web applications

- Web services (RESTful API)- Real-Time apps as its supports Web-Sockets- App with queued inputs- Data streaming apps

What is it good for?

Page 12: Introduction to NodeJS
Page 13: Introduction to NodeJS

NodeJS' package ecosystem, npm, is the largest ecosystem of open source libraries in the world

Page 14: Introduction to NodeJS

Who is using NodeJS?

Page 15: Introduction to NodeJS

Where else can I use NodeJS?

Page 16: Introduction to NodeJS
Page 17: Introduction to NodeJS

JavaScript is on its way to become a really universal language

Page 18: Introduction to NodeJS

Recommended