quickjs-emscripten
quickjs-emscripten copied to clipboard
Safely execute untrusted Javascript in your Javascript, and execute synchronous code that uses async functions
Bumps [ws](https://github.com/websockets/ws) from 8.16.0 to 8.17.1. Release notes Sourced from ws's releases. 8.17.1 Bug fixes Fixed a DoS vulnerability (#2231). A request with a number of headers exceeding the[server.maxHeadersCount][] threshold...
Bumps [webpack](https://github.com/webpack/webpack) from 5.89.0 to 5.94.0. Release notes Sourced from webpack's releases. v5.94.0 Bug Fixes Added runtime condition for harmony reexport checked Handle properly data/http/https protocols in source maps Make...
This PR is a large change aimed to make it easier to work values in the guest, primarily focused on reading guest objects and collections. There are also a major...
Hello, I am struggling making async module loader when using QJS on CF. I need setModuleLoader to be async, but this requires ASYNCified WASM build as far as I understood....
Hey, Firstly thank you for the amazing project. I'm interested in learning more about how to improve performance when loading external modules. I'm very new to wasm in general so...
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...
I want to overload the operator, so I need to run the JavaScript file with the --bignum option. However, I can't find this option in the documentation.
Hi, I have the following code that is not able to capture the interruption and terminate Node with error code 13: ```js import { getQuickJS, shouldInterruptAfterDeadline } from 'quickjs-emscripten'; const...
Hi, I'm try to run the context.getPromiseState demo in the readme but I got the following error: ```js import { getQuickJS, shouldInterruptAfterDeadline } from 'quickjs-emscripten' const QuickJS = await getQuickJS();...
Hi there, We are currently looking for a library that safely executes code and where we can limit the amount of statements executed. I do see the shouldInterruptAfterDeadline function but...