Also not officially supported yet, but it does allow you to also load modules temporarily via the console:<p><pre><code> R42.load({ // or loadAlways
jquery: '$',
underscore: '_',
bluebird: 'Promise'
},
function () {
// $, _, and Promise are now globals
console.log('loaded');
}
);
</code></pre>
This was initially intended to add modules to pages that you don't control so that you can run external code on them.