Skip to content
This repository has been archived by the owner. It is now read-only.
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

rxloop-devtools

https://github.com/TalkingData/rxloop/tree/master/packages/devtools

the rxloop devtools plugin

Usage

import rxloop from '@rxloop/core';
import devtools from '@rxloop/devtools';

const app = rxloop({
  plugins: [
    devtools({
      blacklist: [ 'loading' ]
    })
  ],
});

app.model({
  name: 'commnet',
  state: {
    list: [],
  },
  reducers: {
    add(state) {
      state.list.push({ id: 1, txt: 'text' });
    },
  },
});

app.start();

About

the rxloop devtools plugin

Topics

Resources

License

Packages

No packages published
You can’t perform that action at this time.