项目作者: Learn-Python-and-Javascript

项目描述 :
Single Page Application, **MERN**
高级语言: JavaScript
项目地址: git://github.com/Learn-Python-and-Javascript/conFusion-React.git


This project was bootstrapped with Create React App.

Coursera course
public repo: https://github.com/jmuppala/conFusion-React

Development

  • UI 框架: Bootstrap
  • JS 库:React (hooks)
  • 服务端开发:Node + Express + MongoDB

Three Tier Architecture

Code Lint

采用了 Airbnb 的 ESLint 配置,
前端 eslint-config-airbnb,后端为 eslint-config-airbnb-base,lint 过程中分而治之,将暂不需要的文件目录添加到 .eslintignore
中,并将 lint 命令写入脚本:"lint": "eslint .",提高的 lint 效率

Cloud Provider

最新项目由阿里云 ECS 迁移到 Heroku 平台

部署流程简化

  1. 自动化脚本部署:
  1. {
  2. "scripts": {
  3. "build:ui": "cd path/to/front-end && yarn build --prod && cp -r build path/to/back-end",
  4. "deploy": "git push heroku master",
  5. "deploy:full": "yarn build:ui && git add . && git commit -m uibuild && yarn deploy",
  6. "logs:prod": "heroku logs --tail"
  7. }
  8. }
  1. github 同步部署

github 同步部署

配置路由

前端路由是虚拟的,阿里云服务器上可以用 Nginx 配置,使用 Heroku 平台时需要在 app.js 中加入以下代码:

  1. const path = require('path')
  2. // ...
  3. // 其他路由写在前面,注意执行顺序
  4. app.get('*', (req, res) => {
  5. res.sendFile(path.resolve(__dirname, 'build', 'index.html'))
  6. })

Optimization