https://github.com/devrchancay/esco-components
⚛️ Template for reusable components of React built with Typescript, jest, storybook
https://github.com/devrchancay/esco-components
Last synced: about 1 year ago
JSON representation
⚛️ Template for reusable components of React built with Typescript, jest, storybook
- Host: GitHub
- URL: https://github.com/devrchancay/esco-components
- Owner: devrchancay
- License: mit
- Created: 2020-06-25T12:59:40.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-09-06T08:23:52.000Z (almost 2 years ago)
- Last Synced: 2025-03-21T07:47:46.155Z (about 1 year ago)
- Language: JavaScript
- Size: 2.16 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Component Library
[](https://opensource.org/licenses/MIT)
This project skeleton was created to help people get started with creating their own React component library using:
- [Rollup](https://github.com/rollup/rollup)
- [Styled-components](https://styled-components.com/)
- [TypeScript](https://www.typescriptlang.org/)
It also features:
- [Storybook](https://storybook.js.org/) to help you create and show off your components
- [Jest](https://jestjs.io/) and [React Testing Library](https://github.com/testing-library/react-testing-library) enabling testing of the components
## Development
### Testing
```
npm run test
```
### Building
```
npm run build
```
### Storybook
To run a live-reload Storybook server on your local machine:
```
npm run storybook
```
To export your Storybook as static files:
```
npm run storybook:export
```