我的博客地址:www.tangwen.org 持续更新中。。。。

下载window下安装包 官网http://nodejs.org/

node-v0.6.12.msi  安装即可,通过cmd 命令进入,再打node ..命令执行成功。

默认安装路径为C:\Program Files\nodejs

小试牛刀:

index.js

 

  1.  
  2. /**  
  3. 第一节:开篇章  
  4. *小试牛刀  
  5. **/ 
  6.  
  7. //创建http对象  
  8. var http = require('http');  
  9.  
  10. //创建服务端  
  11. http.createServer(function (request, response) {  
  12.     //发送一个HTTP状态200和HTTP头的内容类型(content-type),  
  13.     response.writeHead(200, {'Content-Type''text/plain'});  
  14.     //向HTTP相应主体中发送文本,完成响应  
  15.     response.end('Hello World\n');  
  16.     //输出日志信息  
  17.     console.log('Server running function');  
  18. }).listen(8888);  
  19. //输出日志信息  
  20. console.log('Server running at http://127.0.0.1:8888/');  
  21.  
  22.  
  23. /*  
  24. 第二种方法:  
  25. 以下方法等同于上面方法  
  26.  
  27. var http = require('http');  
  28.  
  29. function onRequest(request, response){  
  30.     response.writeHead(200,{'Content-Type':'text/plain'});  
  31.     response.end('Hello World\n');  
  32.     console.log('Server running function onSer');  
  33. }  
  34. http.createServer(onRequest).listen('8888');  
  35. console.log('Server running at http://127.0.0.1:8888/');  
  36. */ 

执行cmd命令,再执行 node d:\index.js 即可,执行后出现:

 

  1. Server running at http://127.0.0.1:8888/ 

即可通过浏览器访问,访问地址:http://127.0.0.1:8888/