我是 node.js 的初学者(实际上是今天才开始的)。我不清楚其中一个基本概念,我在这里问,在 SO 上找不到。
在网上阅读了一些教程,我写了一个客户端和一个服务器端代码:
服务器端(比如 server.js):
var http = require('http'); //require the 'http' module
//create a server
http.createServer(function (request, response) {
//function called when request is received
response.writeHead(200, {'Content-Type': 'text/plain'});
//send this response
response.end('Hello World\nMy first node.js app\n\n -Gopi Ramena');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
客户端(比如client.js):
var http=require('http');
//make the request object
var request=http.request({
'host': 'localhost',
'port': 80,
'path': '/',
'method': 'GET'
});
//assign callbacks
request.on('response', function(response) {
console.log('Response status code:'+response.statusCode);
response.on('data', function(data) {
console.log('Body: '+data);
});
});
现在,要运行服务器,我输入node server.js
终端或 cmd 提示符。&它成功运行在控制台中记录消息&当我浏览到 127.0.0.1:1337 时还会输出响应。
但是,如何运行 client.js?我不明白如何运行客户端代码。