node js starting code example
Example 1: SERVER PORT 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}/`);
});
Example 2: node command
> node
Welcome to Node.js <version>.
>'type in javascript'
Example 3: run node app locally
node <filename>.js
Example 4: javascript running at node
const inNode = new Function('try{return this===global;}catch(err){return false;}')();