Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A JavaScript starter for Next.js with ESLint, Prettier, Husky, and GitHub workflows pre-configured.

Free Bootstrap 4 design system with over 100 components, pre-built pages, and a full UI kit for faster web projects.
Nextjs Starter Pack is an open-source JavaScript boilerplate for scaffolding Next.js projects with ESLint, Prettier, Husky Git hooks, and a GitHub Actions workflow already configured. Maintained by Larry Miami on GitHub, this MIT-licensed repository gives developers a production-ready starting point that enforces code quality from the first commit.
Nextjs Starter Pack is a GitHub repository that serves as a boilerplate for Next.js applications written in JavaScript. It takes a blank Next.js setup and layers on development tooling: ESLint for linting, Prettier for formatting, Husky for Git hooks, and a GitHub workflow for CI. The template's output is a project directory with these tools configured, plus an absolute-import alias so you can import modules without deep relative paths.
Nextjs Starter Pack comes pre-configured with a focused set of development tools. Its main features include:
components/Button instead of layered relative paths.yarn dev or npm run dev).yarn build / npm run build for creating optimized production bundles.This starter is aimed at developers who want a disciplined Next.js setup without manual configuration. It is a good fit for:
The template supports several practical workflows. You can:
yarn dev to get a local server at localhost:3000.Getting started involves cloning the repository, installing dependencies with Yarn or npm, and starting the development server with yarn dev or npm run dev. For production, run the build script, which outputs an optimized Next.js bundle. The template also includes Husky hooks at the Git level and a GitHub Actions workflow so quality checks run automatically as part of your development loop.
Yes, it is open source and released under the MIT license, so you can use, modify, and distribute it freely, including for commercial projects.
It uses Next.js with JavaScript, and pairs it with ESLint (following the AirBnB React style guide), Prettier, Husky, and GitHub Actions.
Yes. The README explicitly provides commands for both package managers: npm install && npm run dev as well as yarn && yarn dev.
