刚开始接触nodejs,写了个小demo。分享一下:
1.http://nodejs.org/网址上点击install
2.安装下来的node-v0.10.21-x86.msi
3.配置环境变量, 把安装目录配置到path里
4.创建hello.js并写入以下内容
var http = require("http");
console.log(http);
http.createServer(function(request, response) {
response.writeHead(200, {"Content-Type": "text/html"});
response.write("Hello World!");
response.end();
}).listen(8000);
5.然后进入到hello.js文件目录下执行命令: node hello.js (这里是直接运行cmd 进到helloword.js .当然首先需要在安装node的时候已经配置好了环境变量)
6.在浏览器中http://localhost:8000/
可以看到页面打印出Hello World!
=========================================
这个例子主要是使用node创建一个服务器,监听8000端口。并打印出hello world ~ |
|