Login
Remember
Register
Developerhelpway Q&A
All Activity
Questions
Hot!
Unanswered
Tags
Categories
Users
Ask a Question
Ask a Question
What are the key features of Node.js ?
0
votes
221
views
asked
Mar 1, 2021
in
Node.js
by
Pinku Raj
What are the key features of Node.js ?
node-js
node-js-features
Please
log in
or
register
to add a comment.
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 1, 2021
by
john12
(
4.4k
points)
There are following
key features of Node.js
:-
Asynchronous event driven IO:-
It helps concurrent request handling. All APIs of Node.js are asynchronous. This feature means that if a Node receives a request for some Input/Output operation, it will execute that operation in the background and continue with the processing of other requests. Thus it will not wait for the response from the previous requests.
Fast in Code execution
– Node.js uses the V8 JavaScript Runtime engine, the one which is used by Google Chrome. Node has a wrapper over the JavaScript engine which makes the runtime engine much faster and hence processing of requests within Node.js also become faster.
Single Threaded but Highly Scalable
– Node.js uses a single thread model for event looping. The response from these events may or may not reach the server immediately. However, this does not block other operations. Thus making Node.js highly scalable. Traditional servers create limited threads to handle requests while Node.js creates a single thread that provides service to much larger numbers of such requests.
Node.js library uses JavaScript
– This is another important aspect of Node.js from the developer’s point of view. The majority of developers are already well-versed in JavaScript. Hence, development in Node.js becomes easier for a developer who knows JavaScript.
No Buffering
– Node.js applications never buffer any data. They simply output the data in chunks.
Please
log in
or
register
to add a comment.
Share:-
Welcome to
Developerhelpway
Q&A, where you can ask questions and receive answers from other members of the community.
Categories
All categories
Hibernate
(13)
Spring
(9)
Spring Boot
(47)
Java
(203)
Design Pattern
(2)
JDBC
(9)
Servlet
(1)
JSP
(2)
JSTL
(1)
Thymeleaf
(1)
Struts
(0)
RMI
(0)
PHP
(3)
MySQL
(21)
Oracle
(0)
JSF
(0)
MongoDB
(16)
PLSQL
(0)
JavaScript
(6)
jQuery
(20)
Node.js
(40)
ActiveMQ
(0)
RabbitMQ
(2)
CSS
(0)
HTML
(0)
HTML5
(0)
XML
(0)
Photoshop
(0)
Jasper Report
(0)
iReport
(0)
JMS
(0)
ANT
(0)
Maven
(2)
GIT
(3)
SVN
(0)
CVS
(0)
Eclipse
(2)
Netbeans
(0)
jBoss
(0)
Tomcat
(3)
FreeMarker
(2)
Nginx
(5)
WAMP/LAMP
(0)
Hadoop
(0)
HDFS
(0)
Elasticsearch
(0)
Android
(5)
iPhone
(0)
Windows
(1)
Linux
(0)
Ubuntu
(6)
Data Structure And Algorithm
(53)
Apache Solr
(1)
Google Chrome
(1)
...