'use strict'
const http=require('http');
const server=http.createServer();
server.on('request',function(request, response){
response.writeHead(200,{'Content-Type': 'text/html; charset=utf-8'});
response.write('<h1>hello world</h1>');
response.end();
})
server.listen(3002);
nodejs当作web容器
最新推荐文章于 2025-06-10 09:02:14 发布