> On 1 Apr 2022, at 18:35, Davide Varvello via Pharo-users > <pharo-users@lists.pharo.org> wrote: > > Hi Folks! > > For a customer of mine I want to download a bunch of new code from my > webserver and installing it in a running Pharo image, is there a feasible way > to do it? >
Maybe you could just have file-outs on the server and then just load it with CodeImporter? Reading from a URL: ZnClient new get: ‘someURL’. Loading file outs from a String: CodeImporter class>>#evaluateString: Marcus