Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
const http = require('http'); http.createServer(function(req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.write(req.url); res.end(); }).listen(8080); // To run open http://localhost:8080/query in your web browser /* run: /query */