I have seen many options for loading modules that do not yet support AMD , and I would like to know what is the best practice.
In the end, I would like to write such modules:
module.js: define(["jQuery", "Underscore", "Backbone"], function($, _, Backbone) { ... module code here }
But there are many problems loading these dependencies using AMD, as they are not all compatible with AMD.
source share