sandboxedjs 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/dist/index.cjs +529 -204
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +529 -204
- package/dist/index.js.map +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -591,9 +591,11 @@ a tested claim.
|
|
|
591
591
|
|
|
592
592
|
Honest list of what does not work:
|
|
593
593
|
|
|
594
|
-
- **Vite's dev server**
|
|
595
|
-
|
|
596
|
-
|
|
594
|
+
- **Vite's dev server** loads and reads its config, then stops when esbuild starts: Nodepod
|
|
595
|
+
initialises esbuild by importing it from a CDN over `https:`, which the Node ESM loader
|
|
596
|
+
refuses. Anything that needs esbuild — Vite, and tools built on it — is therefore unavailable
|
|
597
|
+
under Node. Express, Koa, Fastify-style apps and plain `http` servers work. See
|
|
598
|
+
`examples/react-app` for a React setup that runs.
|
|
597
599
|
- **Python is MicroPython**, so C extensions (`numpy`, `pandas`, `cryptography`) are unavailable.
|
|
598
600
|
- **No real sockets.** HTTP servers work through the request proxy; raw TCP/UDP does not.
|
|
599
601
|
- **No real processes.** Processes are cooperative async tasks: `kill -9` cannot interrupt a
|