Basic Full Stack App
Create project directory
FE: Create React app with Vite ↗
FE: Install Tailwindcss for styling ↗
- Install
- Configure template paths in
tailwind.config.js
- Add the Tailwind directives to your CSS
FE: Install json-server for mock data ↗ ↗
- Install
- Create a
db.json
ordb.json5
file
- Add
server
script topackage.json
- Run server
FE: Fetch data
- install axios
- Create a
src/services/cards.ts
file
BE: Create node app ↗
- Create app
- Update start script in
package.json
- Create
index.js
BE: Create Express web server ↗
- Install Express
BE: Use nodemon to autodetect changes ↗ ↗
- Install dev dependency
- Add
dev
script topackage.json
BE: Use REST client to test endpoints ↗ ↗
Create api.rest
BE: Use Morgan middleware for request logging ↗ ↗
- Install
- Add to index.js
BE: Setup CORS ↗
- Install
- Add middleware to index.js
FE: Connect FE to BE
update baseURL in /src/services/cards.ts
BE: Deploy to internet ↗
- Login to fly.io
- Setup project
- Update
fly.toml
- Deploy
- Open
Setup static file service for FE ↗
- BE: add middleware
- FE: Update baseUrl
- BE: add scripts to
package.json
- FE: Add a proxy in
vite.config.js
so local dev still works