how to get started with node js code example

Example 1: how to get started with nodejs

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}/`);
});

Example 2: node command

> node
Welcome to Node.js <version>.

>'type in javascript'

Example 3: javascript running at node

const inNode = new Function('try{return this===global;}catch(err){return false;}')();