Skip to content

Instantly share code, notes, and snippets.

@apolkingg8
Created January 5, 2020 15:21
Show Gist options
  • Save apolkingg8/67c97650c43a39fb2ccb4a0cce6f11df to your computer and use it in GitHub Desktop.
Save apolkingg8/67c97650c43a39fb2ccb4a0cce6f11df to your computer and use it in GitHub Desktop.
Markdium-Test
cat > app.js < {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
});
server.listen(port, hostname, () => {
console.log('Server running at http://%s:%s/', hostname, port);
});
process.on('SIGINT', function() {
console.log('Caught interrupt signal and will exit');
process.exit();
});
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment