Skip to content

Instantly share code, notes, and snippets.

@griffinmichl
Created April 15, 2016 04:29
Show Gist options
  • Select an option

  • Save griffinmichl/59a3b6da2feddd3752e35da49ee77b27 to your computer and use it in GitHub Desktop.

Select an option

Save griffinmichl/59a3b6da2feddd3752e35da49ee77b27 to your computer and use it in GitHub Desktop.
A saved Tricycle Program
"\nconst Cycle = require('@cycle/core');\nconst {makeDOMDriver, div, button} = require('@cycle/dom');\nconst _ = require('lodash');\nconst {Observable} = require('rx');\nconst {restartable} = require('cycle-restart');\n\nfunction main ({DOM}) {\n// This looks a little different than normal. It's to enable support for cycle-restart,\n// which automatically plays back your actions when the code reloads.\n// See https://github.com/Widdershin/cycle-restart for more info\nconst sources = {\n DOM: restartable(makeDOMDriver('.app'), {pauseSinksWhileReplaying: false})\n}\n\n// Normally you need to call Cycle.run, but Tricycle handles that for you!\n// If you want to try this out locally, just uncomment this code.\n//\n// Cycle.run(main, sources);\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment