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 event') const store = createStore(0) .watch(foo, (storeValue, eventValue, eventName) => console.log(`store: ${storeValue}, event: ${eventValue}, name: ${eventName}`)) foo(1)
Created from: https://npm.runkit.com/effector
Loading…
Clone and edit this document