UNPKG

back2

Version:

un projet de test à gomycode

11 lines (9 loc) 220 B
const http = require('http'); const app = http.createServer((req, res) =>{ console.log(req.headers) res.writeHead(200) res.end('hello world') }) app.listen(3000,()=>{ console.log('applisten on 3000') })