require('http').createServer((req, res) => { res.setHeader('content-type', 'application/json') res.end(JSON.stringify({ name: 'hello world' })) }).listen(8080)