Node.js用Hello Worldなコード。
This file contains 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
// 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