Answers for "node js"

33

node js

NodeJs is Runtime environment for executing Js code, Outside Of Browser.
it is build upon Chrome v8 engine using c++.

Uses of Node:

-can build back-end services like API which can be used as backend for 
diferent platform Apps(Website, MobileApp, Desktop App).

-is Asynchronous by default means Single thread handle all the request
and response, thereby providing more speed, highly scalable, built time half 
compare to other tech in market, 33% few line of code, 40% fewer files,
can handle 2times more requests/secs, 35% fast response time.
// Hope you like the short Description.
Posted by: Guest on October-02-2020
2

node js

// 
// Great choice for web development
// Download: https://nodejs.org/en/download/
//
Posted by: Guest on August-15-2021
19

node js

Node js allows you to run javascript outside of your browser
ex: you are able to run it on your terminal
Posted by: Guest on June-18-2020
-1

node js

const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader('Content-Type', 'text/plain');
  res.end('Hello World');
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});
Posted by: Guest on February-07-2021
-1

node js

Node.js = Runtime Environment + JavaScript Library
Posted by: Guest on June-25-2021
-1

node js

dfgdgfdfg
Posted by: Guest on October-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language