This module is intended to be a console-only version of the a Mirador-like viewer, with tests and the ability to manipulate the state tree through actions in the console.
To run the module, first make sure you are in this directory (minimal_redux_poc
), then:
- Run
npm install
to install the dependencies. - Run the
npm run build:umd
task. This will produce an "isomorphic" webpack bundle of the module that can run in the console or browser. The bundle will be calledindex.umd.js
and is placed in this same directory. - Open a nodejs console (type
node
) in this directory. - Import variable names from the module, for example,
let { store, actions } = require('./index.umd')
. - The exported module currently has most of its functionality under the "store" property, so you may prefer to include it with
let state = require('./index.umd').store
.
Add a window:
store.dispatch(actions.addWindow());
To focus a window run:
store.dispatch(actions.focusWindow('window-1'))
store.getState()
$ npm test
or to continually watch the source files
$ npm run test:watch
$ npm run lint
This is a web browser extension for debugging Redux applications. See https://github.com/zalmoxisus/redux-devtools-extension for installation and usage instructions.