create-aura
v1.0.5
Published
Professional scaffolding for AuraJS - The agile web framework
Maintainers
Readme
⚡ create-aura
Scaffold a professional, enterprise-grade AuraJS project in seconds.
Quick Start
You can initialize a new AuraJS project using npm init:
npm create aura@latestOr using npx:
npx create-auraWhat's included?
This CLI scaffolds a professional project structure following the AuraJS "Enterprise" standard:
src/includes: Modular components.src/styles: Centralized design system with responsive CSS.public/assets: Static brand assets.server.js: Optimized for Vercel deployment.structure.txt: Detailed architecture roadmap.
Directory Structure
📁 my-aura-app
├── 📁 aura/ # Core Framework
├── 📁 src/
│ ├── 📁 includes/ # Logic & Components
│ └── 📁 styles/ # Design System
└── 📁 public/
└── 📁 assets/ # Media & IconsDevelopment
Move into your project:
cd my-aura-appStart the local server:
npm run devVisit: http://localhost:3000
Maintenance & Releases
This package uses GitHub Actions for automated releases. To publish a new version:
- Update
"version"inpackage.json. - Push a new tag:
git tag v1.x.x && git push origin v1.x.x. - GitHub will automatically publish the update to NPM.
Made with ❤️ for the AuraJS community.
