Single Page Application, **MERN**
This project was bootstrapped with Create React App.
Coursera course
public repo: https://github.com/jmuppala/conFusion-React
采用了 Airbnb 的 ESLint 配置,
前端 eslint-config-airbnb
,后端为 eslint-config-airbnb-base
,lint 过程中分而治之,将暂不需要的文件目录添加到 .eslintignore
中,并将 lint 命令写入脚本:"lint": "eslint ."
,提高的 lint 效率
最新项目由阿里云 ECS 迁移到 Heroku 平台
{
"scripts": {
"build:ui": "cd path/to/front-end && yarn build --prod && cp -r build path/to/back-end",
"deploy": "git push heroku master",
"deploy:full": "yarn build:ui && git add . && git commit -m uibuild && yarn deploy",
"logs:prod": "heroku logs --tail"
}
}
前端路由是虚拟的,阿里云服务器上可以用 Nginx 配置,使用 Heroku 平台时需要在 app.js
中加入以下代码:
const path = require('path')
// ...
// 其他路由写在前面,注意执行顺序
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, 'build', 'index.html'))
})
lazy load
compression