1、安装node.js程序,选择Windows版本。一般现在有集成包,npm直接连带在安装包中加载了。不然可以去github上面fork一下安装包。[npm is the package manager for JavaScript.]
2、安装好后,设置系统环境变量:在path中粘贴node.exe的位置。
3、API(application programming interface)应用程序接口,可以在node.js 中查询相关参数。
第一个程序:“helloworld”
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('Serverrunning at http://127.0.0.1:1337/');
我们编写我们第一个node.js的程序——hello world
1、 在任意文件夹创建app.js;
2、 编辑文件app.js,填写如下代码:
运用命令行工具,找到我们的app.js的目录文件。
将http://127.0.0.1:1337,复制粘贴到浏览器地址栏,即可输出helloworld。
如何退出
正常退出监听端口的方法是ctrl+c(windows和linux是一致的)