balena-supervisor/app.coffee
2013-07-17 16:10:04 +03:00

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/');
`