https://github.com/dislick/react-demo-application
React Demo Application using Webpack
https://github.com/dislick/react-demo-application
Last synced: over 1 year ago
JSON representation
React Demo Application using Webpack
- Host: GitHub
- URL: https://github.com/dislick/react-demo-application
- Owner: dislick
- Created: 2016-07-01T11:57:31.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-06T08:44:09.000Z (almost 10 years ago)
- Last Synced: 2025-02-23T21:35:35.211Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 308 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-demo-application
I wanted to try out React.js and tried to setup a somewhat realistic project. It features the following things:
- Webpack
- TypeScript
- Redux State Container
- Karma Unit Test Runner with Mocha
## Demonstration
### Browser

### Unit Tests

## Available Commands
Start a watch process for development:
```
npm run dev
```
Build and minify everything for production:
```
npm run build
```
Run unit tests:
```
npm test
```
Open `src/client/index.html` in your browser to see the React application!