A simple full-stack app boilerplate using some of the popular technologies.
- Backend: Node.js, Express.js
- Frontend: React.js (TypeScript), Vite
- Clone the repository and navigate to the project directory.
git clone git@github.com:boolfalse/full-stack-boilerplate.git && cd cd full-stack-boilerplate/
- Install backend and frontend dependencies.
npm install --prefix frontend && npm install --prefix backend
- Start the backend.
npm start --prefix backend
The backend will start on http://localhost:3001
.
- Start the frontend.
npm run dev --prefix frontend
The frontend will run on http://localhost:5173
.
- Open your browser and navigate to
http://localhost:5173
to see the application in action.