1、官方下载: (windows installer)
2、双击安装,一路next
3、新建一个test.js,内容是官方经典测试案例,如下:
var http=require('http');
http.createServer(function(req,res){
res.writeHead(200,{'Content-Type': 'text/plain'});
res.end('Hello World \n');
}).listen(1337,'127.0.0.1');
console.log('Server run at http://127.0.0.1:1337/');
4、win+R打开运行窗口,输入cmd,在cmd窗口输入:node D:\web\js\test.js (此处为刚建的文件的路径)
结果:Server run at http://127.0.0.1:1337/
5、打开浏览器,地址栏输入:http://127.0.0.1:1337/
页面显示:Hello World
6、环境搭建成功。