TA的每日心情 | 衰 2023-2-1 03:21 |
---|
签到天数: 353 天 连续签到: 1 天 [LV.8]以坛为家I
藏宝阁VIP会员
- 积分
- 417

|
发表于 2017-1-3 03:53:30
|
显示全部楼层
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/'); |
|