Skip to content

Instantly share code, notes, and snippets.

@pandanote-info
Created July 24, 2020 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pandanote-info/f7ab2a37995596fed019bb862ddd6b57 to your computer and use it in GitHub Desktop.
Save pandanote-info/f7ab2a37995596fed019bb862ddd6b57 to your computer and use it in GitHub Desktop.
Node.js用Hello Worldなコード。
// See https://pandanote.info/?p=6505 for details.
const http = require('http');
const server = http.createServer
(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
if (!request.url.endsWith('/')) {
response.end("Hello World!!, ("+request.url+")\n");
} else {
response.end("Hello World!!\n");
}
});
server.listen(8590);
console.log("Server running at http://127.0.0.1:8590/");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment