'use strict'; | |
require('http').createServer((req, res) => { | |
res.end('ok'); | |
}).listen(8080); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
'use strict'; | |
require('http').createServer((req, res) => { | |
res.end('ok'); | |
}).listen(8080); |