长井 2013-11-22
一、下载安装【Nodejs】,根据自己的系统选择不同系统不同位数的版本的的文件,并进行安装;
二、Hello Word:
我安装的目录为:D:\ProgramFiles\nodejs
编写helloword代码:
var http = require("http"); var app = http.createServer(function(req,res){ res.writeHead(200, {"Content-Type": "text/html"}); res.write("hello world!"); res.end(); }); app.listen(3000);
保存在目录:D:\ProgramFiles\nodejs
文件名为:app.js ,可以看到上面的图片中有一个app.js也就是我写好的helloword代码
运行:开始->运行->cmd ;进入到 D:\ProgramFiles\nodejs 中然后输入:app.js
启动浏览器:输入http://localhost:3000/ 就可以看到helloword代码了。