🚀 DAY 1 OF LAUNCH WEEK: Reachability for Ruby Now in Beta.Learn more →
Socket
Book a DemoInstallSign in
Socket

@motorcycle/core

Package Overview
Dependencies
Maintainers
4
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@motorcycle/core

Functional and Reactive Framework

latest
Source
npmnpm
Version
2.1.0
Version published
Maintainers
4
Created
Source

Motorcycle.js

Join the chat at https://gitter.im/cyclejs/core Build Status

This is the core of Motorcycle.js creating your applicaton loop tied together with most.js. It separates your application logic into a pure (as much as JavaScript can be) function, and your side-effectful code into drivers.

Install

$ npm install @motorcycle/core

Want to Contribute?

If you found an issue or want to contribute code, please read the contributing guidelines.

If would like to have a repository considered for inclusion in the Motorcycle.js Github and NPM organizations, please open an issue first to avoid duplication of effort and further the possibility of your work being accepted. Afterwards, please refer to our repository guidelines.

Useful Utilities

  • most-subject - A subject implementation for most.js
  • most-proxy - Declarative circular dependencies for most.js

API

run(main, drivers)

Importing
import * as Motorcycle from '@motorcycle/core'

Motorcycle.run(main, drivers)

Takes a main function and circularly connects it to the given collection of driver functions.

The main function takes an object of sources as input. Sources are the outputs from the various drivers. To complete the cycle, main should return a sinks object, which is a mapping of return values from the program to the drivers, i.e., inputs to the drivers, usually Observables/Streams.

Arguments:

main :: Function - a function that takes sources as input and outputs a collection of sinks Observables/Streams.

drivers :: Object - an object where keys are driver names and values are driver functions.

Return:

(Object) an object containing sources, sinks, and dispose() that can be used for debugging or testing.

sources :: Object<most.Stream> - The collection that is passed to your main function. The output of the drivers passed to run()

sinks :: Object<most.Stream> - The collection that is returned from your main function. The input to the drivers.

dispose :: Function - A function that will dispose of streams from sinks and sources.

Keywords

Cyclejs

FAQs

Package last updated on 19 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts