Skip to content

Instantly share code, notes, and snippets.

@alexgalkin
Created February 4, 2019 10:30
Show Gist options
  • Save alexgalkin/fadfa4e9c99739e7b43dc60e61e6224b to your computer and use it in GitHub Desktop.
Save alexgalkin/fadfa4e9c99739e7b43dc60e61e6224b to your computer and use it in GitHub Desktop.
Simple Node respone
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'application/json'});
res.write('{"healthy":true}');
res.end();
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment