node教程--搭建http服务篇

如何搭建一个node.js的http服务器:

上节你已经下载了全局的node.js,所以在本节我们可以直接引入相应的模块

首先创建一个文件夹:
使用指令 cd desktop进入到桌面 使用命令 mkdir node 创建一个node文件夹(此时你可以在桌面上看到新建的 node的文件夹) 再使用 cd node 进入到新创建的node文件夹里 使用touch server.js在文件夹里新建一个server.js的文件

到此时,你可以用你最喜欢的编辑器来准备编写你的程序!
在编辑器里面打开node/server.js的文件来创建一个http的服务器 varhttp = require("http"); http.createServer(function(require, response){ response.writeHead("200", {"Content-Type": "text/plain"}); response.write("hello World!"); response.end(); }).listen(8000);

【node教程--搭建http服务篇】如此一个简单的http服务器就成功的创建了!
再终端里面执行命令 node server.js 再浏览器里面输入地址localhost:8000即可看到"hello World"的字符串

    推荐阅读