Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/lesenelir/best-next

some best practices for Next.js
https://github.com/lesenelir/best-next

Last synced: 4 days ago
JSON representation

some best practices for Next.js

Awesome Lists containing this project

README

        

# best-next

Some best practices for Next.js

- pages router

- app router

#### App Todos:

- [x] Theme switch support

- Install the `next-themes` package to add attributes to the HTML tag
- Configure the `tailwind.config` file

- [x] International support
- `next-intl` package

- [x] Form validation
- `react-hook-form` package
- `zod` package
- Client-side HTML standard validation

#### Create Best Next App

Start a new project with the following command:

```
npx create-best-next
```

```
npm create best-next@latest
```

```
pnpm create best-next
```

```
yarn create best-next
```