Ask the boss to use node to write the simplest data interface, do not use the express framework!

ask the boss to use node to write the simplest data interface, not the express framework!

Aug.19,2021

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