一、node.js安装
下载操作系统对应的安装包,安装即可。
二、node.js测试
- 新建服务器端代码(sample.js):
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello world!!!');
}).listen(8080, "127.0.0.1");
- 启动服务器
node sample.js
- 页面浏览
http://127.0.0.1:8080
三、NPM安装
在node.js的开发过程中,你会要引入大量的第三方代码,可以通过npm来帮你管理相应模块的引入。
- 下载源码:https://github.com/isaacs/npm/tags
- 解压后,进入目录下,执行:
node cli.js install -gf
- 其他命令:
node cli.js install npm -gf //安装最新版
node cli.js install npm@1.0.105 -gf //安装指定版本
- 安装模块命令,以express模块为例:
npm install express -g //全局安装最新版本
npm install express //本地安装,需要到web代码根目录下执行
npm install express@2.5.0 //安装指定版本
npm remove express -g //删除express