app.js 214 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 const http = require('http'); const server = http.createServer(); server.on('connection',(socket) => { console.log('New Connection...'); } ); server.listen(3000); console.log('Listening on port 3000....');