mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
8 lines
257 B
JavaScript
Executable File
8 lines
257 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
var http = require('http');
|
|
http.createServer(function (req, res) {
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.end('Hello World\n');
|
|
}).listen(1337, '127.0.0.1');
|
|
console.log('Server running at http://127.0.0.1:1337/');
|