NextJS Starter Kit Docs
  • ⭐NextJS Starter Kit
  • 🚀Get started
    • SEO
    • Custom styles
    • Multiple Fonts
    • Dark Mode
    • Linting & Formatting
    • Miscellaneous
Powered by GitBook
On this page

Get started

PreviousNextJS Starter KitNextSEO

Last updated 1 year ago

To start a new project using this starter kit, go to the template's github repo and click on "Use this template" button.

Or, if you're more of a terminal person, simply run the following command in your terminal:

git clone --depth=1 https://github.com/inclinedadarsh/nextjs-starter.git your-project-name

Now the above command will clone the template locally. You can start using it. Run the following command to install all the dependencies:

cd your-project-name
bun install

This template is 100% based on . To use this template, you need to install Bun.

To install Bun, checkout their or use the following command.

npm install -g bun

If you're not familiar with bun, don't worry. Simply replace npm with bun and replace npx with bunx in all your commands and you're good to go.

To run the development server, use the following command:

bun run dev

Check out all the customizations you can to get a head start in your project.

🚀
Bun
installation guide