Runkit
Runkit
home page
user forum
new notebook
clone notebook
download notebook
support & documentation
log in
sign up
new notebook
help & feedback
clone this notebook
download this notebook
Sign In
Sign Up
RunKit + npm: effector
node v11.15.0
endpoint
share
tweet
const { createStore, createEvent } = require("effector") const foo = createEvent('foo') const bar = createEvent('bar') const store = createStore(0) .on(bar, (state, value) => value) .watch(foo, (value) => console.log(`triggered ${value}`)) foo(1) bar(2) foo(3)
Created from: https://npm.runkit.com/effector
Loading…
Clone and edit this document