A modern full-stack business flow management application built with React (Vite) and NestJS.
Biz-Flow/
├── frontend/ # React + Vite + TypeScript
├── backend/ # NestJS + TypeScript
└── README.md
- React 18 - UI library
- Vite - Build tool & dev server
- TypeScript - Type safety
- NestJS - Node.js framework
- TypeScript - Type safety
- Express - HTTP server
- Node.js (v18 or higher)
- npm
-
Install Frontend Dependencies
cd frontend npm install -
Install Backend Dependencies
cd backend npm install
Run both services concurrently:
Frontend (Port 5173)
cd frontend
npm run devBackend (Port 3000)
cd backend
npm run start:devFrontend
cd frontend
npm run buildBackend
cd backend
npm run buildnpm run dev- Start development servernpm run build- Build for productionnpm run preview- Preview production build
npm run start:dev- Start in development mode with watchnpm run start:prod- Start in production modenpm run build- Build the applicationnpm run test- Run tests
MIT