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

https://github.com/andrewlo/giphy-react-redux

Giphy app with React/Redux/Typescript
https://github.com/andrewlo/giphy-react-redux

giphy react redux typescript

Last synced: 5 months ago
JSON representation

Giphy app with React/Redux/Typescript

Awesome Lists containing this project

README

          

# AL Giphy Search App with TypeScript/React/Redux

Giphy search app in React.

Live deployment here: https://al-giphy-search.herokuapp.com/

## npm scripts

### Dev
```bash
yarn install
npm run dev
```

This runs a development mode server with live reload etc.

Open `http://localhost:8080` in your browser.

### Production

```bash
npm install
npm start
```

This runs a production-ready express server that serves up a bundled and
minified version of the client.

Open `http://localhost:8080` in your browser.

### Tests

#### Single Run
```bash
$ npm run test
```

#### Watch Files
```bash
$ npm run test:watch
```

#### Coverage
```bash
$ npm run cover
```