easybeezy
v0.1.2
Published
React project bootstrap generator with modular enhancements
Maintainers
Readme
EasyBeezy
React project bootstrap generator with modular enhancements. Turn an empty folder into a production-ready React app in under 2 minutes.
Installation
npm install -g easybeezyUsage
Create a new project
easybeezy createThis launches an interactive wizard that:
- Sets up a React + Vite + TypeScript project
- Applies feature-based architecture
- Installs and configures ESLint, Prettier, and path aliases
- Optionally adds plugins (axios, zustand, redux, tailwind)
Initialize in an existing project
easybeezy initEnhances an existing React project with EasyBeezy's architecture and tooling.
Add a plugin
easybeezy add axiosInstalls a feature module into your project.
List available plugins
easybeezy pluginsAvailable Plugins
| Plugin | Description |
|--------|-------------|
| axios | HTTP client with interceptors and request configuration |
| zustand | Lightweight state management |
| redux | Predictable state container with Redux Toolkit |
| tailwind | Utility-first CSS framework |
Generated Project Structure
src/
├── features/ # Domain-specific modules
├── shared/ # Reusable logic and components
├── services/ # API layer
└── app/ # App bootstrap and configurationRequirements
- Node.js >= 18
License
MIT
