Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 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 */