Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lesenelir/best-next
- Owner: lesenelir
- Created: 2023-09-28T11:09:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-23T09:43:22.000Z (about 1 year ago)
- Last Synced: 2025-02-14T13:09:09.627Z (7 days ago)
- Language: TypeScript
- Homepage: https://best-next.vercel.app
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```