Skip to content

Instantly share code, notes, and snippets.

@pixie79
Last active December 18, 2015 16:39
Show Gist options
  • Save pixie79/5812671 to your computer and use it in GitHub Desktop.
Save pixie79/5812671 to your computer and use it in GitHub Desktop.
No Bid Server
#!/usr/bin/env node
var http = require('http')
var data = ''
http.createServer(function (req, res) {
res.writeHead(204, {'Content-Type': 'text/plan'});
res.end(data);
}).listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment