Installing Cycle.js
Learn about the dependencies used to run Cycle.js
We'll cover the following...
We could use Cycle.js by including it in an HTML page using <script></script>
tags, but that would not be the best way to use it because Cycle.js is designed in an extremely modular way. Every module tries to be as self-sufficient as possible and including several modules as scripts could easily load tons of duplicated code, causing unnecessary downloads and ...