Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 584 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 584 Bytes

Next.js Boilerplate

A configured Next.js TypeScript project. I use it for prototyping, learning, and interview take-home projects. The setup includes:

  • Formatting via Prettier
  • Styling via Styled Components
  • Module Linting via ESLint
  • CSS Linting via ESLint
  • Unit Testing via Jest and React Testing Library
  • Precommit Validation via Husky and Lint Staged
  1. Install Packages
npm install
# or
yarn install
  1. Start the project
npm run dev
# or
yarn dev
  1. Open http://localhost:7777 with your browser to see the result.