CLI tool to scaffold new Laju framework projects
npm install create-laju-appCLI tool to quickly create a new Laju project.
``bashCreate new project
npx create-laju-app my-app
Options
`bash
npx create-laju-app [options]
`| Option | Description | Default |
|--------|-------------|---------|
|
--package-manager | Package manager to use (npm, yarn, bun) | Auto-detect |What's Included
The created project includes:
- Laju Framework - High-performance TypeScript web framework
- Svelte 5 - Reactive UI with runes
- Inertia.js - SPA without client-side routing
- TailwindCSS 4 - Utility-first CSS with Vite
- Database - SQLite + Knex.js migrations
- Authentication - Session-based auth + OAuth (Google)
- Storage - S3/Wasabi support with presigned URLs
- Email - Nodemailer (SMTP) or Resend (API)
- Caching - Database cache or Redis
Next Steps
After creating the project:
`bash
Navigate to project
cd my-appStart development
npm run dev
`Visit
http://localhost:5555` to view the application.For complete Laju framework documentation, visit:
MIT