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
- Host: GitHub
- URL: https://github.com/andrewlo/giphy-react-redux
- Owner: andrewlo
- License: mit
- Created: 2017-03-20T19:54:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-16T22:17:45.000Z (about 8 years ago)
- Last Synced: 2025-03-30T02:22:49.635Z (6 months ago)
- Topics: giphy, react, redux, typescript
- Language: TypeScript
- Homepage:
- Size: 157 KB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```