https://github.com/mikedevelops/react-redux-ts-starter
A starting point for React & Redux web applications written in TypeScript.
https://github.com/mikedevelops/react-redux-ts-starter
javascript react redux typescript webpack
Last synced: 3 months ago
JSON representation
A starting point for React & Redux web applications written in TypeScript.
- Host: GitHub
- URL: https://github.com/mikedevelops/react-redux-ts-starter
- Owner: mikedevelops
- Created: 2018-01-01T20:46:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-04T09:46:35.000Z (over 8 years ago)
- Last Synced: 2025-02-28T23:58:38.358Z (over 1 year ago)
- Topics: javascript, react, redux, typescript, webpack
- Language: TypeScript
- Homepage:
- Size: 70.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React & Redux with TypeScript
A starting point for React & Redux applications built with TypeScript.
## Getting started
Install dependencies.
```
npm install
```
Create a local development server and recompile on file changes.
```
npm run dev
```
Run test suite.
```
npm test
```
Create a production build within the `./dist` directory.
```
npm run prod
```