Create a new Audora Next.js app with one command.
Base template
Blog template
bunx create-audora-next my-appUse --blog to create the blog template. Then follow the prompts, or use:
cd my-app
cp .env.example .env
bun devOpen http://localhost:3000 to see your app.
| Template | Status | Usage |
|---|---|---|
base |
Available | bunx create-audora-next my-app |
blog |
Available | bunx create-audora-next my-app --blog |
- Next.js 16 with App Router & Turbopack
- React 19 with React Compiler
- TypeScript 5 (strict mode)
- Tailwind CSS 4
- Bun runtime
- Open Graph & Twitter Cards
- Structured Data (JSON-LD)
- Dynamic robots.txt & sitemap.xml
- llms.txt for AI assistants
- PWA Manifest
- Security headers
- Dark mode with next-themes
- Geist font
- ESLint 9 flat config
- Prettier with Tailwind plugin
- Husky & lint-staged
- Path alias (
@/*)
The blog template includes everything in the base template, plus:
- MDX-based blog posts with frontmatter
- Blog index at
/blogsand post pages at/blogs/[slug] - Content in
src/blogs/content(MDX files) - Blog components (post cards, table of contents, etc.)
- Ready for adding pagination and search
- Bun v1.0.0 or higher

