🚀 Demo →
Deploy your own copy of this template in just a few clicks!
This template have a bunch of folders, code examples and configurations. Feel free to edit or remove them, including this README!
Customize and enjoy!
This project features all the latest tools and good practices in web development!
- ⚛️ Next.js – A complete React framework for hybrid and server rendering
- 🌴 ky - Tiny and elegant HTTP client based on the browser Fetch API
- ✳️ React Query – Hooks for fetching, caching and updating asynchronous data in React
- 🐻 Zustand – A small, fast and scalable bearbones state-management solution using simplified flux principles
- 👍 react-use – Collection of essential React Hooks
- 🎨 Mantine-UI – A simple, modular and accessible component library that gives you the building blocks to build your React applications
- ✨ Tabler Icons – A collection of popular icons to React projects
- 📋 React Hook Form – Performant, flexible and extensible forms with easy-to-use validation
- 🚨 Zod – TypeScript-first schema validation with static type inference
- 🃏 Jest – A delightful JavaScript Testing Framework with a focus on simplicity
- 🐙 Testing Library – Simple and complete testing utilities that encourage good testing practices
- ⛔ ESLint – Find and fix problems in your JavaScript code
- 🎀 Prettier – An opinionated code formatter, supporting multiple languages and code editors
- 🐺 Husky – Modern native Git hooks made easy
- 💩 lint-staged – Run linters against staged git files and don't let 💩 slip into your code base
- 📓 commitlint – Helps your team adhering to a commit convention
- 🏷️ Standard Version – A utility for versioning using semver and CHANGELOG generation powered by Conventional Commits
- 🕵🏻♂️ why-did-you-render (optional) – Notify you about potentially avoidable re-renders
- Click on "Use this template" button
- Configure your new repository and click on "Create repository from template" button
- Now you can clone the generated repository to your local machine:
$ git clone https://github.com/<YOUR-GITHUB-LOGIN>/<NAME-OF-YOUR-GENERATED-REPOSITORY>.git
Before you can start developing your super application, you need to install the project's dependencies.
Move yourself to the root of the project:
$ cd <NAME-OF-YOUR-GENERATED-REPOSITORY>
For the next steps, choose a package manager of your choice and change the commands contained in the
package.json
scripts. See their documentation for more information:
Install all dependencies of the project:
# PNPM
$ pnpm install
# NPM
$ npm install
Once all dependencies have been installed, you can run the local development server:
# PNPM
$ pnpm dev
# NPM
$ npm run dev
Now just code!
After applying the changes, you can generate a build to test and/or deploy to your production environment.
Make a production build:
# PNPM
$ pnpm build
# NPM
$ npm run build
And then run the build:
# PNPM
$ pnpm start
# NPM
$ npm start
View more commands you can use
# PNPM
$ pnpm run lint
# NPM
$ npm run lint
# PNPM
$ pnpm run lint:fix
# NPM
$ npm run lint:fix
# PNPM
$ pnpm run test # or pnpm run test:watch
# NPM
$ npm run test # or npm run test:watch
# PNPM
$ pnpm run type-check
# NPM
$ npm run type-check
# PNPM
$ pnpm run format
# NPM
$ npm run format
# PNPM
$ pnpm run up
# NPM
$ npm run up
# PNPM
$ pnpm run up-latest
# NPM
$ npm run up-latest
# PNPM
$ pnpm run release-as-major
# NPM
$ npm run release-as-major
# PNPM
$ pnpm run release-as-minor
# NPM
$ npm run release-as-minor
# PNPM
$ pnpm run release-as-patch
# NPM
$ npm run release-as-patch
# PNPM
$ pnpm run push-release
# NPM
$ npm run push-release
# PNPM
$ pnpm run pull
# NPM
$ npm run pull
Why Did You Render
Put the babel.config.js
file (located in the path src/scripts
) in the project root and delete .babelrc
file.
Uncomment the wdyr
import line on pages/_app.tsx
.
That's it! Now you can monitore React re-renders!
Just delete the babel.config.js
and wdyr.ts
files, remove wdyr
import line on pages/_app.tsx
and uninstall it:
# PNPM
$ pnpm uninstall @welldone-software/why-did-you-render
# NPM
$ npm uninstall @welldone-software/why-did-you-render
See below the file tree to understand the project structure.
View file tree
Folders and files marked with (
**
) are optional, so you can delete then.
📂 mantine-admin/
┣ 📂 .github/ # GitHub's folder configs **
┣ 📂 .husky/ # Husky's folder
┃ ┣ 📃 commit-msg # Commitlint git hook
┃ ┗ 📃 pre-commit # Lint-staged git hook
┣ 📂 .vscode/ # VSCode's workspace **
┣ 📂 public/ # Public folder
┃ ┣ 📂 static/ # Static files folder **
┃ ┃ ┣ 📂 icons/ # Icons folder **
┃ ┃ ┣ 📂 images/ # Images folder **
┃ ┃ ┣ 📂 sounds/ # Sounds folder **
┃ ┃ ┗ 📂 videos/ # Videos folder **
┃ ┣ 📂 docs/ # Documentation folder **
┃ ┃ ┣ 📂 demo/ # Demonstrations project **
┃ ┃ ┗ 📂 translations/ # Translations folder **
┃ ┣ 📃 favicon.ico # Icon tab browser
┣ 📂 src/
┃ ┣ 📂 app/ # App pages
┃ ┣ 📂 components/ # App Components
┃ ┃ ┗ 📂 Motion/ # Mantine-UI components **
┃ ┣ 📂 hooks/ # React Hooks **
┃ ┃ ┗ 📃 useFetch.ts # SWR fetch hook (optional) **
┃ ┣ 📂 interfaces/ # TypeScript Interfaces
┃ ┣ 📂 scripts/ # Additional scripts **
┃ ┃ ┣ 📃 babel.config.js # Babel config with WDYR **
┃ ┃ ┗ 📃 wdyr.ts # WDYR file **
┃ ┣ 📂 services/ # Services
┃ ┃ ┗ 📂 users/
┃ ┃ ┣ 📃 index.ts # React Query Configuration
┃ ┃ ┗ 📃 keys.ts # React Query Key
┃ ┣ 📂 stores/ # Zustand stores
┃ ┣ 📂 styles/ # Styles folder
┃ ┃ ┣ 📃 bgImages.ts # SVG background images **
┃ ┃ ┗ 📃 theme.ts # Mantine-UI theme
┃ ┗ 📂 utils/ # Useful functions **
┣ 📃 .babelrc # Default Babel config
┣ 📃 .editorconfig # Editor config
┣ 📃 .eslintignore # ESLint ignore
┣ 📃 .eslintrc # ESLint config
┣ 📃 .gitignore # Git ignore
┣ 📃 .versionrc # Versioning config
┣ 📃 .commitlintrc # Commitlint config
┣ 📃 jest.config.js # Jest config
┣ 📃 jest.setup.js # Jest setup
┣ 📃 LICENSE # License of the project
┣ 📃 next-env.d.ts # Next.js types to TypeScript
┣ 📃 next.config.js # Next.js config
┣ 📃 .prettierrc # Prettier config
┣ 📃 README.md # Main README
┣ 📃 renovate.json # Renovate Bot config **
┣ 📃 tsconfig.json # TypeScript config
Although you don't have to, if you reuse this template for your projects I would appreciate it if you would credit me and provide a link to my GitHub profile in the footer of your project. Thanks!
This project is licensed under the MIT License - see the LICENSE page for details.