Next Plate Save

πŸ¦Έβ€β™€οΈ A super template for Next.js with a pack of incredible tools

Project README

Next-Plate

Next-Plate Banner

πŸ¦Έβ€β™€οΈ A super template for Next.js with a pack of incredible tools


License MIT
Open Source Made with TypeScript Built with Love
Powered by Vercel


Bugs Maintainability Rating Quality Gate Status Reliability Rating Security Rating Vulnerabilities Renovate

Demo Desktop Demo Mobile

🌎 Translations

English PortuguΓͺs Brasileiro Korean

πŸš€ Demo β†’

Deploy your own copy of this template in just a few clicks!

πŸ“– Introduction

This is a complete template with all you need for your next React projects and all the best practices of JAMStack.

This template have a bunch of folders, code examples and configurations. Feel free to edit or remove them, including this README!

Customize and enjoy!

πŸ“š Documentation β†’

🌟 Features

This project features all the latest tools and good practices in web development!

Framework

  • βš›οΈ Next.js – A complete React framework for hybrid and server rendering

Data Fetching

  • ✳️ React Query – Hooks for fetching, caching and updating asynchronous data in React
  • ❇️ SWR (alternative for React Query) – A React Hooks library for data fetching
  • πŸ”„ Axios – Promise based HTTP client for the browser and Node.js

State Management and Hooks

  • 🐻 Zustand – A small, fast and scalable bearbones state-management solution using simplified flux principles
  • πŸ‘ react-use – Collection of essential React Hooks

Design System and Animations

  • 🎨 Chakra-UI – A simple, modular and accessible component library that gives you the building blocks to build your React applications
  • 🎞️ Framer Motion – A production-ready motion library for React
  • ✨ React Icons – A collection of popular icons to React projects

Form Validation

  • πŸ“‹ React Hook Form – Performant, flexible and extensible forms with easy-to-use validation
  • 🚨 Yup – A schema builder for runtime value parsing and validation

Tests

  • πŸƒ Jest – A delightful JavaScript Testing Framework with a focus on simplicity
  • πŸ™ Testing Library – Simple and complete testing utilities that encourage good testing practices

Design Patterns

  • β›” 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

Analysis

  • πŸ•΅πŸ»β€β™‚οΈ why-did-you-render (optional) – Notify you about potentially avoidable re-renders

Additional Plugins

  • πŸ—ƒοΈ next-compose-plugins – Provides a cleaner API for enabling and configuring plugins for Next.js
  • πŸ“± next-pwa – A PWA plugin for Next.js
  • πŸ“ˆ next-seo – A plugin that makes managing your SEO easier in Next.js projects
  • πŸ€– next-sitemap – Sitemap generator for Next.js
  • πŸŽ‰ Partytown – Relocate resource intensive third-party scripts off of the main thread and into a web worker

▢️ Getting Started

πŸ“™ Creating a New Repository on GitHub

  1. Click on "Use this template" button
  2. Configure your new repository and click on "Create repository from template" button
  3. 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

πŸ› οΈ Installation

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
# Yarn
$ yarn install

⌨️ Development

Once all dependencies have been installed, you can run the local development server:

# PNPM
$ pnpm run dev
# NPM
$ npm run dev
# Yarn
$ yarn dev

Now just code!

πŸ–₯️ Production

After applying the changes, you can generate a build to test and/or deploy to your production environment.

Make a production build:

# PNPM
$ pnpm run build
# NPM
$ npm run build
# Yarn
$ yarn build

And then run the build:

# PNPM
$ pnpm start
# NPM
$ npm start
# Yarn
$ yarn start
View more commands you can use

Lint

# PNPM
$ pnpm run lint
# NPM
$ npm run lint
# Yarn
$ yarn lint

Lint and Fix

# PNPM
$ pnpm run lint:fix
# NPM
$ npm run lint:fix
# Yarn
$ yarn lint:fix

Test

# PNPM
$ pnpm run test # or pnpm run test:watch
# NPM
$ npm run test # or npm run test:watch
# Yarn
$ yarn test # or yarn test:watch

Type Checking

# PNPM
$ pnpm run type-check
# NPM
$ npm run type-check
# Yarn
$ yarn type-check

Format

# PNPM
$ pnpm run format
# NPM
$ npm run format
# Yarn
$ yarn format

Interactive Update Tool

# PNPM
$ pnpm run up
# NPM
$ npm run up
# Yarn
$ yarn up

Update All Dependencies

# PNPM
$ pnpm run up-latest
# NPM
$ npm run up-latest
# Yarn
$ yarn up-latest

Release As Major Version

# PNPM
$ pnpm run release-as-major
# NPM
$ npm run release-as-major
# Yarn
$ yarn release-as-major

Release As Minor Version

# PNPM
$ pnpm run release-as-minor
# NPM
$ npm run release-as-minor
# Yarn
$ yarn release-as-minor

Release As Patch Version

# PNPM
$ pnpm run release-as-patch
# NPM
$ npm run release-as-patch
# Yarn
$ yarn release-as-patch

Publish Release

# PNPM
$ pnpm run push-release
# NPM
$ npm run push-release
# Yarn
$ yarn push-release

Get Updates From Remote and Maintain Current Changes

# PNPM
$ pnpm run pull
# NPM
$ npm run pull
# Yarn
$ yarn pull

βš™οΈ Extra Configurations

SWR

Swap to SWR

Install the SWR on the project:

# PNPM
$ pnpm install swr
# NPM
$ npm install swr
# Yarn
$ yarn add swr

Remove all import lines, providers and code blocks of React Query located in src/pages/_app.tsx and src/pages/[login].tsx.

That's it! Use the useFetch function to fetch your data in the application.

Wanna see a demo? Uncomment all import lines and code blocks of SWR implementation on src/pages/[login].tsx.

Why Did You Render

How to Activate

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!

How to Uninstall

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
# Yarn
$ yarn remove @welldone-software/why-did-you-render

πŸ“ File Tree

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.

πŸ“‚ next-plate/
┣ πŸ“‚ .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
┃ ┣ πŸ“ƒ site.webmanifest         # PWA config
┣ πŸ“‚ src/
┃ ┣ πŸ“‚ animations/              # Framer Motion Animations **
┃ ┣ πŸ“‚ components/              # App Components
┃ ┃ β”— πŸ“‚ Motion/                # Chakra + Framer components **
┃ ┣ πŸ“‚ hooks/                   # React Hooks **
┃ ┃ β”— πŸ“ƒ useFetch.ts            # SWR fetch hook (optional) **
┃ ┣ πŸ“‚ interfaces/              # TypeScript Interfaces
┃ ┣ πŸ“‚ pages/                   # App pages
┃ ┣ πŸ“‚ scripts/                 # Additional scripts **
┃ ┃ ┣ πŸ“ƒ babel.config.js        # Babel config with WDYR **
┃ ┃ β”— πŸ“ƒ wdyr.ts                # WDYR file **
┃ ┣ πŸ“‚ services/                # Services
┃ ┃ ┣ πŸ“‚ global/
┃ ┃ ┃ β”— πŸ“ƒ api.ts               # AXIOS config
┃ ┃ β”— πŸ“‚ users/
┃ ┃   ┣ πŸ“ƒ index.ts             # React Query Configuration
┃ ┃   β”— πŸ“ƒ keys.ts              # React Query Key
┃ ┣ πŸ“‚ stores/                  # Zustand stores
┃ ┣ πŸ“‚ styles/                  # Styles folder
┃ ┃ ┣ πŸ“ƒ bgImages.ts            # SVG background images **
┃ ┃ β”— πŸ“ƒ theme.ts               # Chakra-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-seo.config.js         # Next-SEO config
┣ πŸ“ƒ next-sitemap.config.js     # Next-Sitemap config
┣ πŸ“ƒ next.config.js             # Next.js config
┣ πŸ“ƒ .prettierrc                # Prettier config
┣ πŸ“ƒ README.md                  # Main README
┣ πŸ“ƒ renovate.json              # Renovate Bot config **
┣ πŸ“ƒ tsconfig.json              # TypeScript config

πŸ“œ License

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.


⭐ Give a star to maintain this project!

❀️ Thanks for your attention!

πŸ‘¨β€πŸ’» Good Hacking!


"Buy Me A Coffee"

Open Source Agenda is not affiliated with "Next Plate" Project. README Source: gustavomorinaga/next-plate

Open Source Agenda Badge

Open Source Agenda Rating