Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danicunhac/next-chakra
Boilerplate used by companies all around the solar system ☀️
https://github.com/danicunhac/next-chakra
chakra-ui jest nextjs storybook typescript
Last synced: 10 days ago
JSON representation
Boilerplate used by companies all around the solar system ☀️
- Host: GitHub
- URL: https://github.com/danicunhac/next-chakra
- Owner: danicunhac
- Created: 2021-11-03T01:13:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-03T15:32:55.000Z (about 3 years ago)
- Last Synced: 2024-11-23T08:12:52.393Z (2 months ago)
- Topics: chakra-ui, jest, nextjs, storybook, typescript
- Language: TypeScript
- Homepage:
- Size: 247 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
+ Chakra Boilerplate
You can follow Common Layout Design for Next.js Apps
## 🚀 Technologies
- [Next.js](https://nextjs.org)
- [TypeScript](https://www.typescriptlang.org)
- [EditorConfig](https://editorconfig.org)
- [ESLint](https://eslint.org)
- [Prettier](https://prettier.io)
- [commitlint](https://commitlint.js.org)
- [Husky](https://typicode.github.io/husky)
- [Jest](https://jestjs.io/)
- [React Testing Library](https://testing-library.com/)
- [Chakra-ui](https://chakra-ui.com/)## 🔥️ Starting the project
Create a new application using `create-next-app` with the `-e | --example` flag pointing to this repository's _url_, like so:
```bash
npx create-next-app@latest --example https://github.com/danicunhac/next-chakra
```> **Tip:** You can find `create-next-app`'s documentation at [https://nextjs.org/docs/api-reference/create-next-app](https://nextjs.org/docs/api-reference/create-next-app).
### Alternative setup
You can also click on the `Use this template` button.
After that, clone the repository that was created on your account and follow the steps below:
```bash
# Installing project dependencies
yarn# Starting the project
yarn dev
```