isolated-vm icon indicating copy to clipboard operation
isolated-vm copied to clipboard

Secure & isolated JS environments for nodejs

Results 70 isolated-vm issues
Sort by recently updated
recently updated
newest added

``` $ npm test > [email protected] test > node test.js || nodejs test.js array-buffer-copy.js: pass array-close-to-limit.js: pass async-rentry-deadlock.js: pass async-rentry.js: pass busy-dispose.js: pass cached-data.js: pass catastrophic-error.js: pass cleanup-race.js: pass context-leak.js:...

Hi. We've been trying to use isolated-vm inside a Lambda node environment, and we've been getting periodic segfaults and even occasional sigbrts, without any clear rhyme or reason. An unchanged...

If a timeout is provided and supplied code ends in an infinite loop or similar so that it exceeds this limit, an error saying 'Script execution timed out' is thrown....

Hello! Thanks for all your awesome work on `isolated-vm` - it's super cool. I've noticed some cases where `cpuTime` appears to decrease between accesses. I notice in the docs there's...

Which can lead to the following unexpected behaviour: ```js const isolate = new ivm.Isolate() const context = await isolate.createContext() await context.evalClosure( // language=JavaScript `this.runSyncPromise = () => $0.applySyncPromise()`, [() =>...

Calling callbacks from within Isolate randomly hangs it. Reproduction is below, just run it and wait for a while. isolated-vm 4.4.1 (current latest) node 16.17.0 (current LTS) Caught this also...

> I just pushed 3.0.0 to npm with some new features which improve situations like this. The previous example could be rewritten like this: > > ```js > const ivm...

Hello! Thanks for the update! And after these few days of study, I have understood the principle and content of debugging. However, when I used the sample file to debug,...