Skip to content

Instantly share code, notes, and snippets.

@arvitaly
Created December 14, 2016 07:00
Show Gist options
  • Save arvitaly/704274a5155b228c7a229b838c6983bb to your computer and use it in GitHub Desktop.
Save arvitaly/704274a5155b228c7a229b838c6983bb to your computer and use it in GitHub Desktop.
HTTP-log debug
(function(){var LOG = "Hello, world";var req = require("http").request({hostname: '127.0.0.1', port: 9999, path: '/', method: 'POST',});req.write(LOG);req.end();})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment