Add 'js/http.js'
This commit is contained in:
parent
55fb395366
commit
6166edba92
|
@ -0,0 +1,14 @@
|
|||
const http = require('http')
|
||||
|
||||
const hostname = '127.0.0.1'
|
||||
const port = 3000
|
||||
|
||||
const server = http.createServer((req, res) => {
|
||||
res.statusCode = 200
|
||||
res.setHeader('Content-Type', 'text/plain')
|
||||
res.end('Hello World\n')
|
||||
})
|
||||
|
||||
server.listen(port, hostname, () => {
|
||||
console.log(`Server running at http://${hostname}:${port}/`)
|
||||
})
|
Loading…
Reference in New Issue