An open API service indexing awesome lists of open source software.

https://github.com/paalamugan/next14-boilerplate-with-trpc-nextauth

Next.js 14 boilerplate with NextAuth, TRPC, Tailwind CSS, TypeScript, React Query, Storybook, Playwright, Jest, Testing Library, ESLint, Prettier, Husky, Lint-staged.
https://github.com/paalamugan/next14-boilerplate-with-trpc-nextauth

next-auth next-boilerplate next14 nextjs tailwindcss trpc typescript

Last synced: 3 months ago
JSON representation

Next.js 14 boilerplate with NextAuth, TRPC, Tailwind CSS, TypeScript, React Query, Storybook, Playwright, Jest, Testing Library, ESLint, Prettier, Husky, Lint-staged.

Awesome Lists containing this project

README

        

# Next.js 14+ Boilerplate with Next Auth, TRPC, Tailwind CSS 3.4, and TypeScript

Next.js 14 boilerplate with App Router support, Next Auth, TRPC, Tailwind CSS, and TypeScript ⚑️ Prioritizing developer experience first: Next.js, TypeScript, ESLint, Prettier, Husky, Lint-Staged, Jest, Testing Library, Commitlint, VSCode, PostCSS, Tailwind CSS, Authentication with [NextAuth](https://next-auth.js.org/), Storybook and more.

Clone this project and use it to create your own [Next.js](https://nextjs.org) project. This project is a minimalistic boilerplate for Next.js with the following features:

## Features

Developer experience first, extremely flexible code structure and only keep what you need:

- ⚑ [Next.js](https://nextjs.org) with App Router support
- πŸ”₯ Type checking [TypeScript](https://www.typescriptlang.org)
- πŸ’Ž Integrate with [Tailwind CSS](https://tailwindcss.com)
- βœ… Strict Mode for TypeScript and React 18
- πŸ”’ Authentication with [Next Auth](https://next-auth.js.org/): Sign up, Sign in, Sign out.
- ♻️ Type-safe environment variables with T3 Env
- ⌨️ Form handling with React Hook Form
- πŸ”΄ Validation library with Zod
- πŸ“ Linter with [ESLint](https://eslint.org) (default Next.js, Next.js Core Web Vitals, Tailwind CSS and Airbnb configuration)
- πŸ’– Code Formatter with [Prettier](https://prettier.io)
- 🦊 Husky for Git Hooks
- 🚫 Lint-staged for running linters on Git staged files
- πŸš“ Lint git commit with Commitlint
- πŸ““ Write standard compliant commit messages with Commitizen
- 🦺 Unit Testing with Jest and React Testing Library
- πŸ§ͺ Integration and E2E Testing with Playwright
- πŸ‘· Run tests on pull request with GitHub Actions
- πŸŽ‰ Storybook for UI development
- 🎁 Automatic changelog generation with Semantic Release
- πŸ” Visual testing
- πŸ’‘ Absolute Imports using `@` prefix
- πŸ—‚ VSCode configuration: Debug, Settings, Tasks and Extensions
- πŸ€– SEO metadata, JSON-LD and Open Graph tags
- πŸ—ΊοΈ Sitemap.xml and robots.txt
- βš™οΈ [Bundler Analyzer](https://www.npmjs.com/package/@next/bundle-analyzer)
- 🌈 Include a FREE minimalist theme
- πŸ’― Maximize lighthouse score

Built-in feature from Next.js:

- β˜• Minify HTML & CSS
- πŸ’¨ Live reload
- βœ… Cache busting

### Philosophy

- Nothing is hidden from you, so you have the freedom to make the necessary adjustments to fit your needs and preferences.
- Easy to customize
- Minimal code
- SEO-friendly
- πŸš€ Production-ready

### Requirements

- Node.js 20+ and npm. You can install it by running:

```sh
nvm install 20.12.2 && nvm use 20.12.2
```

### Getting started

Run the following command on your local environment:

```shell
git clone --depth=1 https://github.com/paalamugan/next14-biolerplate-with-next-auth.git my-project-name
cd my-project-name
pnpm install
```

#### Prerequisites

- Copy the `.env.example` file to `.env.local` and update the environment variables with your own values.

```shell
cp .env.example .env.local
```

and update the environment variables with your own values.

Then, you can run the project locally in development mode with live reload by executing:

```shell
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your favorite browser to see your project.

### Project structure

```shell
.
β”œβ”€β”€ README.md # README file
β”œβ”€β”€ .github # GitHub folder
β”œβ”€β”€ .husky # Husky configuration
β”œβ”€β”€ .storybook # Storybook folder
β”œβ”€β”€ .vscode # VSCode configuration
β”œβ”€β”€ public # Public assets folder
β”œβ”€β”€ scripts # Scripts folder
β”œβ”€β”€ src
β”‚ β”œβ”€β”€ app # Next JS App (App Router)
β”‚ β”œβ”€β”€ components # React components
β”‚ β”œβ”€β”€ constants # constants folder
β”‚ β”œβ”€β”€ server # server folder
β”‚ β”œβ”€β”€ stores # Store folder (Zustand)
β”‚ β”œβ”€β”€ hooks # hooks folder
β”‚ | β”œβ”€β”€ react-client # client side hooks
β”‚ | β”œβ”€β”€ react-server # server side hooks
β”‚ | β”œβ”€β”€ react-generic # generic hooks (both client and server)
β”‚ β”œβ”€β”€ layouts # layouts folder
β”‚ β”œβ”€β”€ lib # 3rd party libraries configuration
β”‚ β”œβ”€β”€ providers # providers folder
β”‚ β”œβ”€β”€ styles # Styles folder
β”‚ β”œβ”€β”€ templates # Templates folder
β”‚ β”œβ”€β”€ trpc # tRPC folder
β”‚ β”œβ”€β”€ types # Type definitions
β”‚ β”œβ”€β”€ utils # Utilities folder
β”‚ └── validations # Validation schemas(Zod)
β”œβ”€β”€ tests
β”‚ β”œβ”€β”€ e2e # E2E tests, also includes Monitoring as Code
β”‚ └── integration # Integration tests
β”œβ”€β”€ tailwind.config.js # Tailwind CSS configuration
└── tsconfig.json # TypeScript configuration
```

### Customization

You can easily configure Next js Boilerplate by making a search in the whole project with `FIXME:` for making quick customization. Here is some of the most important files to customize:

- `public/apple-touch-icon.png`, `public/favicon.ico`, `public/favicon-16x16.png` and `public/favicon-32x32.png`: your website favicon, you can generate from [https://favicon.io/favicon-converter/](https://favicon.io/favicon-converter/)
- `src/constants/appConfig.ts`: configuration file
- `src/templates/BaseTemplate.tsx`: default theme
- `next.config.mjs`: Next.js configuration
- `.env`: default environment variables

You have access to the whole code source if you need further customization. The provided code is only example for you to start your project. The sky is the limit πŸš€.

### Commit Message Format

The project enforces [Conventional Commits](https://www.conventionalcommits.org/) specification. This means that all your commit messages must be formatted according to the specification. To help you write commit messages, the project uses [Commitizen](https://github.com/commitizen/cz-cli), an interactive CLI that guides you through the commit process. To use it, run the following command:

```shell
pnpm commit
```

One of the benefits of using Conventional Commits is that it allows us to automatically generate a `CHANGELOG` file. It also allows us to automatically determine the next version number based on the types of commits that are included in a release.

### Testing

All unit tests are located with the source code inside the same directory. So, it makes it easier to find them. The project uses Jest and React Testing Library for unit testing. You can run the tests with:

```shell
pnpm test
```

### Integration & E2E Testing

The project uses Playwright for Integration and E2E testing. You can run the tests with:

```shell
npx playwright install # Only for the first time in a new environment
pnpm test:e2e
```

### Enable Edge runtime (optional)

The App Router folder is compatible with the Edge runtime. You can enable it by uncommenting the following lines `src/app/layout.tsx`:

```tsx
// export const runtime = 'edge';
```

### Deploy to production

Then, you can generate a production build with:

```shell
pnpm build
```

It generates an optimized production build of the boilerplate. For testing the generated build, you can run:

```shell
pnpm start
```

The command starts a local server with the production build. Then, you can now open [http://localhost:3000](http://localhost:3000) with your favorite browser to see the project.

### Useful commands

#### Bundle Analyzer

Next.js Boilerplate comes with a built-in bundle analyzer. It can be used to analyze the size of your JavaScript bundles. To begin, run the following command:

```shell
pnpm build-stats
```

By running the command, it'll automatically open a new browser window with the results.

### VSCode information (optional)

If you are VSCode users, you can have a better integration with VSCode by installing the suggested extension in `.vscode/extension.json`. The starter code comes up with Settings for a seamless integration with VSCode. The Debug configuration is also provided for frontend and backend debugging experience.

With the plugins installed on your VSCode, ESLint and Prettier can automatically fix the code and show you the errors. Same goes for testing, you can install VSCode Jest extension to automatically run your tests and it also show the code coverage in context.

Pro tips: if you need a project wide type checking with TypeScript, you can run a build with `Cmd` + `Shift` + `B` on Mac.

### License

Licensed under the MIT License, Copyright Β© 2024

See [LICENSE](LICENSE) for more information.