@structify-cli/cli
v1.2.2
Published
A CLI tool for structuring your project
Readme
📖 Structify — Modern Project Scaffolding CLI
Structify is a developer-friendly CLI tool that helps you quickly scaffold modern web applications with clean, opinionated project structures.
It provides ready-to-use templates for popular frameworks like React (Vite) and Next.js, so you can focus on building instead of configuring.
📦 Installation
You don’t need to install Structify globally. Just use npx:
npx @structify-cli/cli create-appOr install globally:
npm install -g @structify-cli/cli
structify create-app🛠 Usage
Create app
npx @structify-cli/cli create-app
structify create-appOptions
| Flag | Description | Default |
| ---------------- | ---------------------------------- | ------- |
| create-app | Choose template: react or next | react |
📂 Example Project Structure
When you generate a project, Structify sets up a clean, modern structure with best practices.
React + Vite + TypeScript example:
my-app/
│
├── src/
│ ├── components/
│ ├── pages/
│ └── App.tsx
│
├── public/
├── package.json
├── tsconfig.json
└── vite.config.ts🤝 Contributing
Contributions are welcome!
- Fork the repo
- Create a new branch (
git checkout -b feature/awesome-feature) - Commit changes (
git commit -m 'Add awesome feature') - Push branch (
git push origin feature/awesome-feature) - Open a Pull Request 🎉
📜 License
MIT — free to use, modify, and share.
