Created
January 5, 2020 15:21
-
-
Save apolkingg8/67c97650c43a39fb2ccb4a0cce6f11df to your computer and use it in GitHub Desktop.
Markdium-Test
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
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