使用node.js 文档里的方法写一个web服务器
Posted hello world
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用node.js 文档里的方法写一个web服务器相关的知识,希望对你有一定的参考价值。
刚刚看了node.js文档里的一个小例子,就是用 node.js 写一个web服务器的小例子
上代码 (*^▽^*)
//helloworld.js
// 使用node.js写一个服务器 const http=require(‘http‘); const hostname=‘127.0.0.1‘ const port=3000; const server = http.createServer((req,res)=>{ res.statusCode=200; res.setHeader(‘Content-Type‘,‘text/plain‘); res.end(‘Hello World\n‘); }); server.listen(port,hostname,()=>{ console.log(`服务器运行在http://${hostname}:${port}/`); });
然后在控制台输入 node helloworld.js ,然后将控制台显示的服务器运行地址复制到浏览器里,如果可以看到 Hello World 就表示服务器运行成功了(^-^)V
感觉这段代码封装的很严实,逻辑很清晰,但是不知道应该怎么用(?_?),以后知道了再来更新吧(*^▽^*)
以上是关于使用node.js 文档里的方法写一个web服务器的主要内容,如果未能解决你的问题,请参考以下文章
Node.js+Web TWAIN,实现Web文档扫描和图像上传