https://github.com/codibly/meetup-react-redux-typescript
Repository for meetup: Creating scalable SPA on React / Redux / TypeScript stack
https://github.com/codibly/meetup-react-redux-typescript
Last synced: 4 months ago
JSON representation
Repository for meetup: Creating scalable SPA on React / Redux / TypeScript stack
- Host: GitHub
- URL: https://github.com/codibly/meetup-react-redux-typescript
- Owner: codibly
- Created: 2017-06-29T12:26:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-30T10:47:00.000Z (about 9 years ago)
- Last Synced: 2025-03-21T22:22:08.203Z (over 1 year ago)
- Language: TypeScript
- Size: 72.3 KB
- Stars: 1
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Codibly Meetup #2
Creating scalable SPA on React / Redux / TypeScript stack
## Requirements
* node `^6.9.0`
* yarn `^0.17.0` or npm `^3.0.0`
### Installation
It is recommended that you use [Yarn](https://yarnpkg.com/) for deterministic installs, but `npm install` will work just as well.
```bash
$ yarn install # Install project dependencies
$ cp .env.dist .env # Create .env file based on dist template
$ yarn dev # Start dev server
```
While developing, you will probably rely mostly on `yarn dev`; however, there are additional scripts at your disposal:
|`yarn run `| Description |
|-------------------|-------------|
|`dev` | Serves app at `localhost:3000`. |
|`build:dev` | Builds development package to disk (`~/dist` by default). |
|`build` | Builds production package to disk (`~/dist` by default). |
|`serve` | Serve production package with node server. |
|`test` | Runs unit tests with Jest.|
|`lint` | Lint project files. |
|`lint:fix` | Try to fix lint errors. |
## Thank you
I would like to thank [react-redux-starter-kit](https://github.com/davezuko/react-redux-starter-kit) for inspiration.