Starting with Modules
Learn how to split an application code into modules in Marionette.
We'll cover the following...
While building our app, we’ve simply been putting the code into index.html
so far.
Refactor the code using Marionette modules
While that’s great for a small app, it won’t scale as our code base grows. So, let’s refactor our code using Marionette modules. Here's basic strategy we’ll follow: ...