Replies: 2 comments 3 replies
-
Runtime has preloadRemote which will pull the code but not evaluate the require of it. You need to use the json protocol AFIK to use it tho. But yes we support preload of remote and share |
Beta Was this translation helpful? Give feedback.
2 replies
-
yields an error:
looking at the manifest, it looks right?
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a remote that I want to fetch but not completely evaluated. This may not be relevant for most folks, but I have a remote which references an external library available in the host and it has a static initializer. I do not want that initializer to be triggered until I am ready, which in my case is inside a sandbox vm.
Is there currently a way to accomplish this? I'd like to eval them at a time of my choosing / write the files out to the filesystem. I would just loadRemote inside the vm sandbox at the right time, but that has some architectural implications that won't work for me.
Beta Was this translation helpful? Give feedback.
All reactions