UNPKG

1.55 kBMarkdownView Raw
1# @uppy/redux-dev-tools
2
3<img src="https://uppy.io/images/logos/uppy-dog-head-arrow.svg" width="120" alt="Uppy logo: a superman puppy in a pink suit" align="right">
4
5<a href="https://www.npmjs.com/package/@uppy/redux-dev-tools"><img src="https://img.shields.io/npm/v/@uppy/redux-dev-tools.svg?style=flat-square"></a>
6<a href="https://travis-ci.org/transloadit/uppy"><img src="https://img.shields.io/travis/transloadit/uppy/master.svg?style=flat-square" alt="Build Status"></a>
7
8ReduxDevTools plugin that simply syncs with redux-devtools browser or JS extensions, and allows for basic time travel:
9
10Uppy is being developed by the folks at [Transloadit](https://transloadit.com), a versatile file encoding service.
11
12## Example
13
14```js
15const Uppy = require('@uppy/core')
16const ReduxDevTools = require('uppy/redux-dev-tools')
17
18const uppy = Uppy()
19uppy.use(ReduxDevTools)
20```
21
22## Installation
23
24```bash
25$ npm install @uppy/redux-dev-tools --save
26```
27
28We recommend installing from npm and then using a module bundler such as [Webpack](https://webpack.js.org/), [Browserify](http://browserify.org/) or [Rollup.js](http://rollupjs.org/).
29
30Alternatively, you can also use this plugin in a pre-built bundle from Transloadit's CDN: Edgly. In that case `Uppy` will attach itself to the global `window.Uppy` object. See the [main Uppy documentation](https://uppy.io/docs/#Installation) for instructions.
31
32## Documentation
33
34Documentation for this plugin can be found on the [Uppy website](https://uppy.io/docs/redux-dev-tools).
35
36## License
37
38[The MIT License](./LICENSE).