You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For any other issues, please refer to the [isolated-vm readme](https://github.com/laverdet/isolated-vm#requirements).
37
37
38
+
## Cannot Find Module
39
+
40
+
> Error: Cannot find module './out/isolated_vm'
41
+
42
+
This error may happen when using pnpm 10 or later, because it does not run the `postinstall` script by default to build or download the native modules of isolated-vm.
43
+
44
+
To fix this, re-run the install command with `--allow-build=isolated-vm --force` added or see the [pnpm 10 changelog](https://github.com/pnpm/pnpm/releases/tag/v10.0.0).
45
+
38
46
## Heap Out Of Memory
39
47
40
48
> FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
@@ -44,8 +52,7 @@ Fix by running node with the [--max-old-space-size](https://nodejs.org/api/cli.h
44
52
::: code-group
45
53
46
54
```sh [Windows]
47
-
set NODE_OPTIONS=--max-old-space-size=8192
48
-
webcrack bundle.js
55
+
set NODE_OPTIONS=--max-old-space-size=8192 && webcrack bundle.js
0 commit comments