Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davidyang2149/react-starter

React Starter Kit
https://github.com/davidyang2149/react-starter

react starter-kit typescript

Last synced: about 1 month ago
JSON representation

React Starter Kit

Awesome Lists containing this project

README

        

# React Starter
- GitHub: [React starter kit](https://github.com/DavidYang2149/react-starter)
- npm: [Download](https://www.npmjs.com/package/@davidyang2149/react-starter)

## ๐Ÿš€ Quick start

```sh
npx @davidyang2149/react-starter
```

## ๐Ÿ’Ž Tech stack
- TypeScript
- ESLint
- Vite
- React
- Jest
- Testing-Library
- Cypress

## ๐Ÿ“š Install dependencies

```sh
npm install
```

## ๐Ÿ’ป Run dev server

```sh
npm run start
```

## ๐Ÿงช TypeScript check

```sh
npm run check
```

## ๐Ÿงช ESLint check

```sh
npm run lint
```

## ๐Ÿงช Run unit tests

```sh
npm run test

# check coverage
npm run test:coverage
```

## ๐Ÿงช Run E2E tests

```sh
npm run e2e

# headless option
npm run e2e:headless

# ui option
npm run e2e:ui
```

## Use E2E test report

When open Pull Request, you can use an e2e testing report by GitHub Actions.
Set GitHub Pages in your repository.

![](https://user-images.githubusercontent.com/40143056/188051599-4e926b7c-2c7f-435b-8c39-4d371b64fa22.png)

## โœ๏ธ Authors
- [Davidyang2149](https://github.com/DavidYang2149) - **David Yang** -

See also the list of [contributors](https://github.com/DavidYang2149/react-starter/graphs/contributors)
who participated in this project.

## ๐Ÿ“ License

```
MIT License

Copyright (c) 2022 David Yang

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```