Skip to content

Instantly share code, notes, and snippets.

@fkchang
Created May 30, 2017 17:30
Show Gist options
  • Save fkchang/666ac81656185b120164d10dbcbf2d4a to your computer and use it in GitHub Desktop.
Save fkchang/666ac81656185b120164d10dbcbf2d4a to your computer and use it in GitHub Desktop.
require 'nodejs'
http = node_require('http')
port = 1337
`
http.createServer(function(req, res) {
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(port);
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment