Node学习 Lesson1 使用express

初始化项目:

1
npm init

安装express,安装有两个方法

1
npm install express --save //方法一:直接安装,并将配置保存在package.json

或者

1
2
修改package.josn,增加express及版本信息
npm install

创建文件app.js

1
2
touch app.js
open app.js

写入代码:

1
2
3
4
5
6
7
8
9
10
11
var express = require('express');
var app = express();
app.get('/',function(req, res){
res.send('hello world');
});
app.listen(3000, function (){
console.log('app is listening ar port 3000');
})

执行node:

1
node app.js

在浏览器输入localhost:3000,看到上面有打印:

1
hello,world

课程地址:《一个最简单的 express 应用》