Dependency Management Got Awesome
CommonJS and AMD Compliant dependency loader for modern web apps
require.run
0.5.x
OLD: This is an old version of documentation. You probably want the most recent version of this
document, from the sidebar on the right.
require.run('moduleName');
A simple way to invoke a module, where you’re not interested in its outcome or exports. This is useful for launching a program, and is shorthand for
require.ensure(['moduleName'], function () {});
- CommonJS Interface
- AMD Interface
- The Inject API
- How To and Tutorials