run node js server conslod code example

Example 1: nodejs hello world

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: javascript running at node

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

Tags:

Html Example