IP地址和端口号:
.js代码
1 //1、加载http具名核心模块 2 var http=require(‘http‘) 3 4 //2、创建server 5 var server=http.createServer() 6 7 //3、监听request请求事件,设置请求处理函数 8 server.on(‘request‘,function(req,res){ 9 console.log(‘\n收到请求了,请求路径是:‘+req.url) 10 console.log("客户端IP地址:",req.socket.remoteAddress) 11 console.log(‘收到我的客户端的端口号是:‘,req.socket.remotePort) 12 }) 13 14 //4、绑定端口号,启动服务器 15 server.listen(80,function(){ 16 console.log("服务器启动成功,可以访问了,访问路径:http://127.0.0.1") 17 })
原文地址:https://www.cnblogs.com/technicist/p/12695751.html
时间: 2024-10-02 22:51:35