A developing blog framework, based on React + TypeScript + SpringBoot
- Backstage UI
- Frontend UI
- API
- Login System
- Axios Encapsulation
- React + TypeScript
- React Router
- Reducer
- Sass
- Axios
- Vite
json-servreemulate api (temporarily)nodejs api in Express framework(You can deploy locally or visit out deployment onvercel)
Blog/
|-- server/
| |-- db.json // json-server startup file
|-- src/
| |-- apis
| |-- assets
| |-- components
| |-- interface
| |-- pages
| |-- router
| |-- store // Redux States Management
|-- package.json
|-- README.md
// Prepare source code
git clone https://github.com/LinMoQC/LinMoBlog.git
cd LinMoBlog
// Run front end
npm install # If failed please append `--force`
npm run dev
// Select one in two behind ends
// Run behind end: json-server
cd server
json-server --watch db.json --port 3000
// Run behind end: nodejs interface in Express framework
cd server/nodejs
nodemon app.js










