Created
December 14, 2016 07:00
-
-
Save arvitaly/704274a5155b228c7a229b838c6983bb to your computer and use it in GitHub Desktop.
HTTP-log debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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