脚手架:
- 安装express脚手架:
npm install -g express-generator
- 查看安装结果:
express --version
- 创建应用:
express project_name
- 启动应用:
cd project_name
npm install
第一种:npm start
第二种:node ./bin/www
-
浏览器运行localhost:3000
-
文件目录结构:
app.js 应用的主入口
bin 启动脚本
node_modules 依赖的模块
package.json node 模块的配置文件
public 静态资源,如 css、js 等存放的目录
routes 路由规则存放的目录
views 模板文件存放的目录
移动端常用UI组件库
1、Vant https://youzan.github.io/vant
2、CodeUI https://didi.github.io/cube-ui
3、MintUI http://mint-ui.github.io
PC 端常用UI组件库
1、ElementUI https://element.eleme.cn
2、IVIewUI https://www.iviewui.com
搭建express服务:
npm init
npm install express
- 新建server.js
const express = require('express')
const app = express();
app.get('/person', (req, res) => {
res.send({
name: 'tom',
age: 18
})
});
app.listen(5005, (err) => {
if (!err)
console.log('服务器启动成功了')
})
node server
http://localhost:5005/person
网友评论