创建Node.js应用程序
步骤1 -导入所需模块
我们使用require指令加载http模块并将返回的HTTP实例存储到http变量中,如下所示-
var http = require("http");
步骤2 -创建服务器
我们使用创建的http实例并调用http.createServer()方法来创建服务器实例,然后使用与服务器实例关联的listen方法将其绑定在端口8081上。将参数请求和响应传递给它。编写示例实现以始终返回“Hello World”。
http.createServer(function (request, response) {
// 发送http头
// HTTP Status: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 发送响应体 "Hello World"
response.end('Hello World\n');
}).listen(8081);
// 控制台打印消息
console.log('Server running at http://127.0.0.1:8081/');
上面的代码足以创建一个HTTP服务器,该服务器进行侦听,即通过本地计算机上的8081端口等待请求。
步骤3 -测试请求和响应
让我们将第1步和第2步放到一个名为main.js的文件中,然后启动我们的HTTP服务器,如下所示-
var http = require("http");
http.createServer(function (request, response) {
// 发送http头
// HTTP Status: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 发送响应体 "Hello World"
response.end('Hello World\n');
}).listen(8081);
// 控制台打印消息
console.log('Server running at http://127.0.0.1:8081/');
现在执行main.js以启动服务器,如下所示:
验证输出。服务器已启动。
Server running at http://127.0.0.1:8081/