2.0.0 • Published 6 years ago

cycle-channel-dom v2.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

cycle-channel-dom

Tests Stability Dependencies

Takes in DOM streams, like events, and turns them into Signals for cycle-channel.

Usage

import {viewEventSignals} from "cycle-channel-dom"

const application = ({view, network, storage}) => {
  return channel({
    signals: [
      viewEventSignals(view),
    ],
  ...
  })
})