A powerful CLI tool to create Next.js projects with opinionated best practices and configurations.
- β‘οΈ Next.js 14 with App Router
- π― TypeScript for type safety
- π¨ Tailwind CSS for styling
- π¦ Bun for faster package management and development
- π Turbopack for lightning-fast builds
- π GitHub Actions for CI/CD
- π Organized Project Structure with src directory
- βοΈ Optimized Next.js configuration
- π Security best practices
Before you begin, ensure you have the following installed:
Install the CLI tool globally using:
cargo install --git https://github.com/cesarferreira/nextjs-starter.git
Create a new Next.js project anywhere on your system:
nexto my-project
Replace my-project
with your desired project name (only letters, numbers, hyphens, and underscores are allowed).
my-project/
βββ src/
β βββ app/ # App Router pages and layouts
β βββ components/ # Reusable UI components
β βββ lib/ # Utility functions and shared logic
β βββ styles/ # Global styles and Tailwind config
βββ public/ # Static assets
βββ .github/ # GitHub Actions workflows
βββ next.config.mjs # Next.js configuration
After creating your project:
cd my-project
bun dev
Then open http://localhost:3000 in your browser.
Contributions are welcome! Please feel free to submit a Pull Request.
MIT License - feel free to use this template for any project.
If you find this tool helpful, please consider giving it a star βοΈ on GitHub.