A full-stack TypeScript monorepo with Express backend, React frontend, and MongoDB database.
Required tools:
- Node.js 18+
- npm
- Git
# Clone the repository
git clone <your-repo-url>
cd project_react_node
# Install dependencies for backend and frontend
npm run install:all
# Set up environment variables for the backend
cd server
cp .env.example .env
# Edit .env to add your configuration
# Start backend server
npm start
# In a new terminal, start frontend
cd ../client
npm install
npm run dev