create-reactendjs
v0.1.0
Published
CLI tool for bootstrapping new Reactend applications
Maintainers
Readme
create-reactend
CLI tool for bootstrapping new Reactend applications
Usage
Create a new Reactend app:
npx create-reactend my-app
cd my-app
npm install
npm run devOptions
npx create-reactend [project-name] [options]
Options:
-t, --template <template> Template to use (default: "basic")
-h, --help Display help
-V, --version Display versionTemplates
Basic
A simple Reactend application with:
- Welcome endpoint
- Users CRUD operations
- Health check endpoint
- Hot reload setup
- TypeScript configuration
What's Included
When you create a new Reactend app, you get:
my-app/
├── src/
│ └── index.tsx # Main application
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── README.md # Project documentationScripts
The generated project includes these npm scripts:
npm run dev- Start development server with hot reloadnpm run build- Build the applicationnpm run start- Start production servernpm run typecheck- Run TypeScript type checking
Getting Help
License
MIT
