A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

刚开始接触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    ~

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马