Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cef62/react-starter
A starting point to play with React
https://github.com/cef62/react-starter
Last synced: about 2 months ago
JSON representation
A starting point to play with React
- Host: GitHub
- URL: https://github.com/cef62/react-starter
- Owner: cef62
- Created: 2019-10-29T13:09:35.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T11:18:53.000Z (about 2 years ago)
- Last Synced: 2023-04-01T06:59:07.372Z (almost 2 years ago)
- Language: TypeScript
- Size: 2.53 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React starter project
Example project configured with `React`, `Typescript`, `Storybook`, and `styled-components`.
The project is built using `webpack`, `prettier` and `eslint`.## Installation
To install the required modules run:
```javascript
yarn install --frozen-lockfile
```### Style guide
To access storybook run:
```javascript
yarn storybook
```The `storybook` style guide is running on [http:localhost:9009](http:localhost:9009).
### Development server
To start the development server run:
```javascript
yarn start
```The application is running on [http:localhost:3001](http:localhost:3001).
### Production build
To build the project to run on any server run:
```javascript
yarn build
```The project will be compiled into the `dist` folder.
The compiled output is targeting all browsers supporting `es2015` .To build and test the compiled version of the project run
```javascript
yarn build-and-run
```The application is running on [http:localhost:8080](http:localhost:8080).