kickstart-frontend
v1.1.0
Published
A CLI tool to scaffold customizable React component structures.
Maintainers
Readme
🚀 Kickstart Frontend
A CLI tool to scaffold customizable React component structures, instantly.
📦 Installation
Install at specific project
npm install kickstart-frontend OR
Install globally
npm install -g kickstart-frontendUsing NPX (recommended)
npx create-react-componentOR
npx crc🎯 Features
📁 Create React components with consistent structure
⚙️ Supports both JavaScript and TypeScript
💅 CSS, SCSS, and SCSS Modules integration
🧠 Intelligent prompts to guide your setup
🖼️ Automatically generates component file + style sheet
✅ 100% test coverage with Jest
🛠️ Usage
npx create-react-componentYou will be prompted for:
- Component name
- Target location (default: src/components)
- Language (JavaScript / TypeScript)
- Styling options (CSS / SCSS / SCSS Module)
📁 Output Example
If you choose:
- Name: Post-Card
- Type: TypeScript
- Style: SCSS Module
It generates:
src/
└── components/
└── PostCard/
├── PostCard.tsx
└── PostCard.module.scssDemo

For Duplicate scenarios

✨ Aliases
You can use either of the following commands:
- create-react-component
- crc
Both point to the same CLI entry.
📜 License
MIT © Souryadeep Roy Chowdhury
