mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-22 06:57:49 +00:00
9 lines
237 B
CoffeeScript
9 lines
237 B
CoffeeScript
`
|
|
var http = require('http');
|
|
http.createServer(function (req, res) {
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.end('Hello World\n');
|
|
}).listen(1337, '0.0.0.0');
|
|
console.log('Server running at http://0.0.0.0:1337/');
|
|
`
|