Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.9 KB

README.md

File metadata and controls

40 lines (26 loc) · 1.9 KB

This is a helper Chrome Extension for app-state. You need to install app-state v0.2.0-beta.2 or greater for it. Currently 0.2.0 is in beta (0.2.0-beta.X) on npm.

You can currently inspect and edit your appState and watch it update in real time

observing:

update

editing:

two-way

To install it:

  1. Install it

  2. initialize your singleton appstate with devTools : true:

    'use strict';
    
    var state = require('app-state');
    
    module.exports = state.init({
        devTools : true
    });
  3. go to your apps page and open the Chrome dev console

open-app-state