Reputation: 12378
The build system from Dojo can be used to bundle all the modules into a single file so that you get modularity during development and performance during deployment. Is there such a system for jQuery or a general way of doing this in javascript(with no frameworks like Dojo)?
Upvotes: 1
Views: 141
Reputation: 69934
Dojo just implements the Asynchronous Module Definition (AMD) interface. It is supposed to be a common standard and you can find other implementations, like, for example, requireJs.
Upvotes: 1