A simple CLI that gives you a clean, structured React project from the first line of code. It removes boilerplate code and distractions and gives you a solid starting point.
npm create klean
Every time you start a new React project, you delete files you don't need, strip out styles you won’t use, and rewrite the default app. Then you think about structure, folders, setup, and all the little decisions that slow you down before you’ve even started building.
This small work adds up and you do it every single time.
Klean removes that entire workflow.
It scaffolds a React project using Vite, then immediately clears out everything you don’t need and replaces it with a clean, intentional starting point. No demo code or leftover styling. Just a minimal app and a structure you can build on.
Let's talk project structure. You get 2 structure options to choose from:
Plain
For simple projects and quick builds. You get a minimal setup with a components folder and just enough structure to move fast.
Feature-based
For real applications that need to scale. Your code is organized by domain, keeping logic and UI grouped together.