Contact: aviboots(AT)netvision.net.il
40,774 questions
53,162 answers
573 users
const http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Node.js'); }).listen(8080); // To run open http://localhost:8080/ in your web browser /* run: Node.js */