Organize your Cycle.js Application into the Model-View-Intent Pattern

InstructorAndré Staltz

Share this video with your friends

Send Tweet

We built the BMI calculator all inside one function: main(). As apps scale, we don't want main() to grow. We need an organized pattern where each function focuses on doing one thing. This lesson shows how we can easily refactor the main() function into three parts: Intent, Model, and View.