Package Exports
- create-fullstack-forge
- create-fullstack-forge/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-fullstack-forge) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
create-fullstack-forge
A CLI tool to scaffold a new full-stack application with Express backend and React frontend powered by Vite.
Installation
npm install -g create-fullstack-forgeor use with npx:
npx create-fullstack-forgeUsage
create-fullstack-forge <project-name>This will create a new directory with the following structure:
my-project/
├── backend/
│ ├── src/
│ │ ├── index.js
│ │ ├── config/
│ │ ├── controllers/
│ │ ├── middleware/
│ │ ├── models/
│ │ └── routes/
│ ├── package.json
│ └── .env.example
├── frontend/
│ ├── src/
│ │ ├── main.jsx
│ │ ├── App.jsx
│ │ ├── components/
│ │ ├── features/
│ │ ├── pages/
│ │ ├── store/
│ │ └── styles/
│ ├── package.json
│ ├── vite.config.js
│ ├── tailwind.config.js
│ └── postcss.config.js
├── package.json
├── pnpm-workspace.yaml
├── docker-compose.yml
└── README.mdGetting Started
Navigate to your project:
cd my-projectInstall dependencies:
pnpm install
Start the development environment:
# Terminal 1: Backend cd apps/backend pnpm dev # Terminal 2: Frontend cd apps/frontend pnpm dev
Features
- Full-stack boilerplate with modern tech stack
- Express.js backend with middleware and routing
- React frontend with Vite build tool
- Redux for state management
- Tailwind CSS for styling
- Docker support with docker-compose
- Monorepo setup with pnpm
- Pre-configured authentication system
License
MIT