An open API service indexing awesome lists of open source software.

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

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

![demo video](demo.gif)

### Unit Tests

![demo video unit tests](unittests.gif)

## 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!