我是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);
});
});
现在,要运行服务器,请在终端或cmd提示符下键入node server.js
。 &安培;它成功运行在控制台&中记录消息当我浏览到127.0.0.1:1337时也输出响应。
但是,如何运行client.js?我无法理解如何运行客户端代码。
答案 0 :(得分:10)
简答:您可以使用命令
node client.js
运行“客户端”代码,它将发送一个http请求
关于什么是server side
以及什么是client side
,它实际上取决于上下文。
虽然在大多数情况下,client side
表示您的浏览器或手机应用上运行的代码,server side
表示您的浏览器或手机正在与之通话的“服务器”或“后端”
在你的情况下,我认为它更像是一个“服务器”与另一个“服务器”进行对话,而且它们都在后端,因为这就是为node.js设计的