create-zenuxs-app
v2.0.4
Published
CLI to scaffold Zenuxs projects
Downloads
1,150
Readme
create-zenuxs-app 🚀
A powerful CLI tool to scaffold modern web applications using the Zenuxs ecosystem.
Clean structure, fast setup, and flexible customization for any modern stack.
✨ Features
- Frontend: React + Vite or Next.js
- Backend: Express or Fastify
- Database Support:
- MongoDB (with optional Easy-Mongoo integration)
- MySQL
- PostgreSQL
- Authentication: JWT-based authentication template
- Styling: Optional TailwindCSS setup
- Type Safety: TypeScript support
- Full-Stack Mode: Auto-configures both frontend + backend folders
🚀 Quick Start
Run the CLI:
npx create-zenuxs-app my-projectOr directly:
create-zenuxs-app <project-name>The CLI will guide you through:
- Project type → Frontend, Backend, Full-Stack
- Framework selection
- Database options
- Optional features (TS, Tailwind, Auth, etc.)
📁 Project Structure
Frontend (React + Vite)
my-project/
├── src/
│ ├── components/
│ ├── pages/
│ │ ├── Home.jsx
│ │ └── ZenuxsPage.jsx
│ └── styles/
├── public/
├── package.json
└── vite.config.jsBackend (Express)
my-project/
├── src/
│ ├── routes/
│ ├── controllers/
│ ├── middlewares/
│ └── config/
├── server.js
├── package.json
└── .envFull-Stack Layout
my-project/
├── frontend/ (React or Next.js)
├── backend/ (Express or Fastify)
└── README.md🌐 Zenuxs Ecosystem
- Zenuxs Accounts: https://zenuxs.in
- Easy-Mongoo: https://easy-mongoo.zenuxs.in
- HMAX Security: https://hmax.zenuxs.in
🛠️ Development Setup
Clone the repository:
git clone <repository>
cd create-zenuxs-app
npm installLink globally:
npm linkTest locally:
create-zenuxs-app test-project
# or
node index.js my-project📦 Installation & Testing
- Install dependencies:
npm install- Link globally:
npm link- Test the CLI:
create-zenuxs-app my-test-project📄 License
MIT License
Built with ❤️ by the Zenuxs Team
