<div dir="ltr"><div><div><div>Hello!<br><br></div>I've recently started playing with Lively and I have a couple of questions.<br><br>I have some helper JS methods that I want to use in different worlds. Currently I install the methods in the world morph and use $world.<method> in my code. I would like to extract these methods into a JS library file and import it into different worlds. By reading other posts in the mailing list, I found that, for example, <a href="http://lively-web.org/users/larswassermann/relax.html">http://lively-web.org/users/larswassermann/relax.html</a>, loads the <a href="http://lively-web.org/users/larswassermann/relax.js">http://lively-web.org/users/larswassermann/relax.js</a> file. I want to do the same thing in my worlds. How can I do that?  <br><br>I've been exploring and found the Preferences window. In that, I see a bootstrap group, which seems could be something that would allow me to add files JS files to the bootstrap, but when I try to edit the bootstrapFiles property, I get '["core/lively/Migration.js","core/liv...' in the editor, instead of the entire array.<br></div><br>Also, how can I load a generic JS library (for example<code class=""><span class=""><span class=""> <a href="https://sdk.amazonaws.com/js/aws-sdk-2.1.5.min.js">https://sdk.amazonaws.com/js/aws-sdk-2.1.5.min.js</a></span></span></code>) into the world and have AWS (defined as a global variable in the library) be a global variable in my world?<br><br></div>I think I read in the mailing list an answer to this:<br><br>module(<my-module>).requires().requiresLib({<br>    url: "<a href="https://sdk.amazonaws.com/js/aws-sdk-2.1.5.min.js">https://sdk.amazonaws.com/js/aws-sdk-2.1.5.min.js</a>", loadTest: function() { return !!window.AWS; }<br>}).toRun(function() {<br><br>});<br><div><div><br>if I can load my own library (earlier question).<br><br>Is there any documentation or other resources for this kind of (lower level) stuff? For example, how the bootstrap process works, etc.<br><br></div><div>Thanks.<br></div></div></div>