我有一个小节点程序。
console.log("Program Started");
var http = require('http');
//Configure our HTTP server to respond with Hello World to all requests.
var server = http.createServer(function (request, response) {
console.log("Processing Request for URL" + request.url);
response.writeHead(200, {"Content-Type": "text/html"});
response.end("Hello World \n");
});
// Listen on port 8000, IP defaults to 127.0.0.1
server.listen(8000);
console.log("Program Ended");
如果我在MacBook上运行此程序并访问以下URL,我会看到Hello World消息。
http://localhost:8000/
但是,我希望此URL也能响应HTTPS连接。
https://localhost:8000/
如何使用NodeJS执行此操作?
原生http
库可以为我做这个吗?或者我需要快递吗?
答案 0 :(得分:1)