UNPKG

@jitl/quickjs-wasmfile-debug-asyncify

Version:

Variant of quickjs library: Variant with separate .WASM file. Supports browser ESM, NodeJS ESM, and NodeJS CommonJS.

94 lines (72 loc) 3.64 kB
# @jitl/quickjs-wasmfile-debug-asyncify Variant with separate .WASM file. Supports browser ESM, NodeJS ESM, and NodeJS CommonJS. This generated package is part of [quickjs-emscripten](https://github.com/justjake/quickjs-emscripten). It contains a variant of the quickjs WASM library, and can be used with quickjs-emscripten-core. ```typescript import variant from "@jitl/quickjs-wasmfile-debug-asyncify" import { newQuickJSAsyncWASMModuleFromVariant } from "quickjs-emscripten-core" const QuickJS = await newQuickJSAsyncWASMModuleFromVariant(variant) ``` This variant was built with the following settings: ## Library: quickjs The original [bellard/quickjs](https://github.com/bellard/quickjs) library. Version [2024-02-14+36911f0d](https://github.com/bellard/quickjs/commit/36911f0d3ab1a4c190a4d5cbe7c2db225a455389) vendored to quickjs-emscripten on 2024-06-15. ## Release mode: debug Enables assertions and memory sanitizers. Try to run your tests against debug variants, in addition to your preferred production variant, to catch more bugs. ## Exports: require import browser workerd Exports the following in package.json for the package entrypoint: - Exports a NodeJS-compatible CommonJS module, which is faster to load and run compared to an ESModule. - Exports a NodeJS-compatible ESModule. Cannot be imported synchronously from a NodeJS CommonJS module. - Exports a browser-compatible ESModule, designed to work in browsers and browser-like environments. - Targets Cloudflare Workers. ## Extra async magic? Yes Build run through the ASYNCIFY WebAssembly transform. This imposes substantial size (2x the size of sync) and speed penalties (40% the speed of sync). In return, allows synchronous calls from the QuickJS WASM runtime to async functions on the host. The extra magic makes this variant slower than sync variants. Note that both variants support regular async functions. Only adopt ASYNCIFY if you need to! The [QuickJSAsyncRuntime](https://github.com/justjake/quickjs-emscripten/blob/main/doc/quickjs-emscripten/classes/QuickJSAsyncRuntime.md) and [QuickJSAsyncContext](https://github.com/justjake/quickjs-emscripten/blob/main/doc/quickjs-emscripten/classes/QuickJSAsyncContext.md) classes expose the ASYNCIFY-specific APIs. ## Single-file, or separate .wasm file? wasm Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. ## More details Full variant JSON description: ```json { "library": "quickjs", "releaseMode": "debug", "syncMode": "asyncify", "description": "Variant with separate .WASM file. Supports browser ESM, NodeJS ESM, and NodeJS CommonJS.", "emscriptenInclusion": "wasm", "exports": { "require": { "emscriptenEnvironment": ["node"] }, "import": { "emscriptenEnvironment": ["node"] }, "browser": { "emscriptenEnvironment": ["web", "worker"] }, "workerd": { "emscriptenEnvironment": ["web"] } } } ``` Variant-specific Emscripten build flags: ```json [ "-s ASYNCIFY=1", "-DQTS_ASYNCIFY=1", "-DQTS_ASYNCIFY_DEFAULT_STACK_SIZE=81920", "-s ASYNCIFY_STACK_SIZE=81920", "-s ASYNCIFY_REMOVE=@$(BUILD_WRAPPER)/asyncify-remove.json", "-s ASYNCIFY_IMPORTS=@$(BUILD_WRAPPER)/asyncify-imports.json", "-lasync.js", "-O0", "-DQTS_DEBUG_MODE", "-DDUMP_LEAKS=1", "-gsource-map", "-s ASSERTIONS=1", "--pre-js $(TEMPLATES)/pre-extension.js", "--pre-js $(TEMPLATES)/pre-sourceMapJson.js", "--pre-js $(TEMPLATES)/pre-wasmOffsetConverter.js", "--pre-js $(TEMPLATES)/pre-wasmMemory.js", "-O3" ] ```