https://github.com/zgreen/web-project-starter-kit
https://github.com/zgreen/web-project-starter-kit
Last synced: 9 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/zgreen/web-project-starter-kit
- Owner: zgreen
- License: mit
- Created: 2021-05-24T11:01:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-06-02T16:47:34.000Z (about 5 years ago)
- Last Synced: 2025-03-04T11:42:32.345Z (over 1 year ago)
- Language: TypeScript
- Size: 190 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Web project starter kit
I created this repo because I got tired of scaffolding out the same set up for all my web projects.
It uses:
- [next.js](https://nextjs.org/) with [TypeScript](https://www.typescriptlang.org/)
- [@testing-library/react](https://testing-library.com/docs/react-testing-library/intro)
- [prettier](https://prettier.io/)
- [emotion](https://emotion.sh/docs/introduction)
- [swr](https://swr.vercel.app/)
## Use it
```sh
git clone git@github.com:zgreen/web-project-starter-kit.git my-app
cd my-app
npm i
npm run dev
```
## Start in production
```sh
npm run start
```
## TypeScript checks
```sh
npm run tsc
```
## Run tests
```sh
npm run test
```