logo头像
Snippet 博客主题

nodejs用例

本文于1534天之前发表,文中内容可能已经过时。

用例1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
const http=require('http');
const hostname='127.0.0.1';
const port=3000;
const obj={
name:"张三"
}
const server=http.creatServer((req,res)=>{
res.statusCode=200;
res.setHeader("Content-Type",'text/plain;'text/plain; charset=utf-8');
res.end(obj.name);
})
server.listen(port,hostname,()=>{
console.log(`服务器运行在 http://${hostname}:${port}/`);
})