Skip to content

Commit 235f6da

Browse files
authored
quickjs for quickjs (#137)
* improve error unwrapping fidelity * add purejs variant * call it asmjs * regen * add test * yarn lock * regen doc * bring over bun example * implement enough fs stuff to get example to run * quickjs-for-quickjs * progress * fix package name * regen * d.mts * prettier * changelog * maybe we messed up stack size? * fix stack size * turn off ttylog * lint * update changelog * bump version * upgrade emscripten * regen makefile
1 parent 2ca7f5f commit 235f6da

File tree

150 files changed

+2682
-371
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+2682
-371
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.31.0
4+
5+
- [#137](https://github.com/justjake/quickjs-emscripten/pull/137)
6+
- Add `quickjs-for-quickjs`, a package that can run inside quickjs, so you can put quickjs inside your quickjs.
7+
- **Possibly breaking**: Fix a build system bug that made commonjs or esm variants include both types, thus being larger than they needed to be. After upgrading a variant to this release, you should verify that it can be imported/required as expected. You may need to add additional variants if you were using an "esm" variant from both cjs and esm.
8+
39
## v0.30.0
410

511
- [#200](https://github.com/justjake/quickjs-emscripten/pull/200) Inspect and iterate handles, equality, changes to result types, changes to debug logging.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ compiled to WebAssembly.
77
- Create and manipulate values inside the QuickJS runtime ([more][values]).
88
- Expose host functions to the QuickJS runtime ([more][functions]).
99
- Execute synchronous code that uses asynchronous functions, with [asyncify][asyncify].
10+
- Supports browsers, NodeJS, Deno, Bun, Cloudflare Workers, QuickJS (via [quickjs-for-quickjs][]).
1011

1112
[Github] | [NPM] | [API Documentation][api] | [Variants][core] | [Examples][tests]
1213

@@ -43,6 +44,7 @@ main()
4344
[values]: #interfacing-with-the-interpreter
4445
[asyncify]: #asyncify
4546
[functions]: #exposing-apis
47+
[quickjs-for-quickjs]: https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-for-quickjs
4648

4749
- [quickjs-emscripten](#quickjs-emscripten)
4850
- [Usage](#usage)

c/interface.c

+2
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ MaybeAsync(JSBorrowedChar *) QTS_Dump(JSContext *ctx, JSValueConst *obj) {
728728
copy_prop_if_needed(ctx, enumerable_props, *obj, "name");
729729
copy_prop_if_needed(ctx, enumerable_props, *obj, "message");
730730
copy_prop_if_needed(ctx, enumerable_props, *obj, "stack");
731+
copy_prop_if_needed(ctx, enumerable_props, *obj, "fileName");
732+
copy_prop_if_needed(ctx, enumerable_props, *obj, "lineNumber");
731733

732734
// Serialize again.
733735
JSValue enumerable_json = JS_JSONStringify(ctx, enumerable_props, JS_UNDEFINED, JS_UNDEFINED);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
[quickjs-emscripten](../../packages.md)**@jitl/quickjs-asmjs-mjs-release-sync**[Readme](README.md) \| [Exports](exports.md)
2+
3+
***
4+
5+
# @jitl/quickjs-asmjs-mjs-release-sync
6+
7+
Compiled to pure Javascript, no WebAssembly required.
8+
9+
This generated package is part of [quickjs-emscripten](https://github.com/justjake/quickjs-emscripten).
10+
It contains a variant of the quickjs WASM library, and can be used with quickjs-emscripten-core.
11+
12+
```typescript
13+
import variant from "@jitl/quickjs-asmjs-mjs-release-sync"
14+
import { newQuickJSWASMModuleFromVariant } from "quickjs-emscripten-core"
15+
const QuickJS = await newQuickJSWASMModuleFromVariant(variant)
16+
```
17+
18+
This variant was built with the following settings:
19+
20+
## Contents
21+
22+
- [Library: quickjs](README.md#library-quickjs)
23+
- [Release mode: release](README.md#release-mode-release)
24+
- [Exports: import](README.md#exports-import)
25+
- [Extra async magic? No](README.md#extra-async-magic-no)
26+
- [Single-file, or separate .wasm file? asmjs](README.md#single-file-or-separate-wasm-file-asmjs)
27+
- [More details](README.md#more-details)
28+
29+
## Library: quickjs
30+
31+
The original [bellard/quickjs](https://github.com/bellard/quickjs) library.
32+
33+
Version [2024-02-14+36911f0d](https://github.com/bellard/quickjs/commit/36911f0d3ab1a4c190a4d5cbe7c2db225a455389) vendored to quickjs-emscripten on 2024-06-15.
34+
35+
## Release mode: release
36+
37+
Optimized for performance; use when building/deploying your application.
38+
39+
## Exports: import
40+
41+
Exports the following in package.json for the package entrypoint:
42+
43+
- Exports a NodeJS-compatible ESModule. Cannot be imported synchronously from a NodeJS CommonJS module.
44+
45+
## Extra async magic? No
46+
47+
The default, normal build. Note that both variants support regular async functions.
48+
49+
## Single-file, or separate .wasm file? asmjs
50+
51+
The C library code is compiled to Javascript, no WebAssembly used. Sometimes called "asmjs". This is the slowest possible option, and is intended for constrained environments that do not support WebAssembly, like quickjs-for-quickjs.
52+
53+
## More details
54+
55+
Full variant JSON description:
56+
57+
```json
58+
{
59+
"library": "quickjs",
60+
"releaseMode": "release",
61+
"syncMode": "sync",
62+
"description": "Compiled to pure Javascript, no WebAssembly required.",
63+
"emscriptenInclusion": "asmjs",
64+
"exports": {
65+
"import": {
66+
"emscriptenEnvironment": ["web", "worker", "node"]
67+
}
68+
}
69+
}
70+
```
71+
72+
Variant-specific Emscripten build flags:
73+
74+
```json
75+
[
76+
"-Oz",
77+
"-flto",
78+
"--closure 1",
79+
"-s FILESYSTEM=0",
80+
"--pre-js $(TEMPLATES)/pre-extension.js",
81+
"--pre-js $(TEMPLATES)/pre-wasmMemory.js",
82+
"-s WASM=0",
83+
"-s SINGLE_FILE=1"
84+
]
85+
```
86+
87+
***
88+
89+
Generated using [typedoc-plugin-markdown](https://www.npmjs.com/package/typedoc-plugin-markdown) and [TypeDoc](https://typedoc.org/)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
[quickjs-emscripten](../../packages.md)**@jitl/quickjs-asmjs-mjs-release-sync**[Readme](README.md) \| [Exports](exports.md)
2+
3+
***
4+
5+
[quickjs-emscripten](../../packages.md) / @jitl/quickjs-asmjs-mjs-release-sync
6+
7+
# @jitl/quickjs-asmjs-mjs-release-sync
8+
9+
## Contents
10+
11+
- [Variables](exports.md#variables)
12+
- [default](exports.md#default)
13+
- [@jitl/quickjs-asmjs-mjs-release-sync](exports.md#jitlquickjs-asmjs-mjs-release-sync)
14+
15+
## Variables
16+
17+
### default
18+
19+
> **`const`** **default**: [`QuickJSSyncVariant`](../../quickjs-emscripten/interfaces/QuickJSSyncVariant.md)
20+
21+
### @jitl/quickjs-asmjs-mjs-release-sync
22+
23+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-asmjs-mjs-release-sync/README.md) |
24+
Compiled to pure Javascript, no WebAssembly required.
25+
26+
| Variable | Setting | Description |
27+
| -- | -- | -- |
28+
| 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. |
29+
| releaseMode | release | Optimized for performance; use when building/deploying your application. |
30+
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. |
31+
| emscriptenInclusion | asmjs | The C library code is compiled to Javascript, no WebAssembly used. Sometimes called "asmjs". This is the slowest possible option, and is intended for constrained environments that do not support WebAssembly, like quickjs-for-quickjs. |
32+
| exports | import | Has these package.json export conditions |
33+
34+
#### Source
35+
36+
[index.ts:19](https://github.com/justjake/quickjs-emscripten/blob/main/packages/variant-quickjs-asmjs-mjs-release-sync/src/index.ts#L19)
37+
38+
***
39+
40+
Generated using [typedoc-plugin-markdown](https://www.npmjs.com/package/typedoc-plugin-markdown) and [TypeDoc](https://typedoc.org/)

doc/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ compiled to WebAssembly.
1111
- Create and manipulate values inside the QuickJS runtime ([more][values]).
1212
- Expose host functions to the QuickJS runtime ([more][functions]).
1313
- Execute synchronous code that uses asynchronous functions, with [asyncify][asyncify].
14+
- Supports browsers, NodeJS, Deno, Bun, Cloudflare Workers, QuickJS (via [quickjs-for-quickjs][]).
1415

1516
[Github] | [NPM] | [API Documentation][api] | [Variants][core] | [Examples][tests]
1617

@@ -47,6 +48,7 @@ main()
4748
[values]: #interfacing-with-the-interpreter
4849
[asyncify]: #asyncify
4950
[functions]: #exposing-apis
51+
[quickjs-for-quickjs]: https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-for-quickjs
5052

5153
- [quickjs-emscripten](#quickjs-emscripten)
5254
- [Usage](#usage)

doc/packages.md

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
- [@jitl/quickjs-singlefile-browser-debug-asyncify](@jitl/quickjs-singlefile-browser-debug-asyncify/README.md)
3030
- [@jitl/quickjs-singlefile-browser-release-sync](@jitl/quickjs-singlefile-browser-release-sync/README.md)
3131
- [@jitl/quickjs-singlefile-browser-release-asyncify](@jitl/quickjs-singlefile-browser-release-asyncify/README.md)
32+
- [@jitl/quickjs-asmjs-mjs-release-sync](@jitl/quickjs-asmjs-mjs-release-sync/README.md)
3233

3334
***
3435

doc/quickjs-emscripten-core/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ const QuickJS = await newQuickJSWASMModuleFromVariant(releaseVariant)
4848
- [@jitl/quickjs-singlefile-browser-debug-asyncify](README.md#jitlquickjs-singlefile-browser-debug-asyncify)
4949
- [@jitl/quickjs-singlefile-browser-release-sync](README.md#jitlquickjs-singlefile-browser-release-sync)
5050
- [@jitl/quickjs-singlefile-browser-release-asyncify](README.md#jitlquickjs-singlefile-browser-release-asyncify)
51+
- [@jitl/quickjs-asmjs-mjs-release-sync](README.md#jitlquickjs-asmjs-mjs-release-sync)
5152

5253
## What's a variant?
5354

@@ -357,6 +358,19 @@ Variant with the WASM data embedded into a browser ESModule.
357358
| emscriptenInclusion | singlefile | The WASM runtime is included directly in the JS file. Use if you run into issues with missing .wasm files when building or deploying your app. |
358359
| exports | browser | Has these package.json export conditions |
359360

361+
### @jitl/quickjs-asmjs-mjs-release-sync
362+
363+
[Docs](https://github.com/justjake/quickjs-emscripten/blob/main/doc/@jitl/quickjs-asmjs-mjs-release-sync/README.md) |
364+
Compiled to pure Javascript, no WebAssembly required.
365+
366+
| Variable | Setting | Description |
367+
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
368+
| 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. |
369+
| releaseMode | release | Optimized for performance; use when building/deploying your application. |
370+
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. |
371+
| emscriptenInclusion | asmjs | The C library code is compiled to Javascript, no WebAssembly used. Sometimes called "asmjs". This is the slowest possible option, and is intended for constrained environments that do not support WebAssembly, like quickjs-for-quickjs. |
372+
| exports | import | Has these package.json export conditions |
373+
360374
***
361375

362376
Generated using [typedoc-plugin-markdown](https://www.npmjs.com/package/typedoc-plugin-markdown) and [TypeDoc](https://typedoc.org/)

doc/quickjs-emscripten-core/classes/DisposableFail.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
#### Source
5757

58-
[packages/quickjs-emscripten-core/src/lifetime.ts:426](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L426)
58+
[packages/quickjs-emscripten-core/src/lifetime.ts:451](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L451)
5959

6060
## Properties
6161

@@ -65,7 +65,7 @@
6565
6666
#### Source
6767

68-
[packages/quickjs-emscripten-core/src/lifetime.ts:427](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L427)
68+
[packages/quickjs-emscripten-core/src/lifetime.ts:452](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L452)
6969

7070
## Accessors
7171

@@ -79,7 +79,7 @@
7979

8080
#### Source
8181

82-
[packages/quickjs-emscripten-core/src/lifetime.ts:433](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L433)
82+
[packages/quickjs-emscripten-core/src/lifetime.ts:458](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L458)
8383

8484
## Methods
8585

@@ -117,7 +117,7 @@ Just calls the standard .dispose() method of this class.
117117

118118
#### Source
119119

120-
[packages/quickjs-emscripten-core/src/lifetime.ts:437](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L437)
120+
[packages/quickjs-emscripten-core/src/lifetime.ts:462](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L462)
121121

122122
***
123123

@@ -131,7 +131,7 @@ Just calls the standard .dispose() method of this class.
131131

132132
#### Source
133133

134-
[packages/quickjs-emscripten-core/src/lifetime.ts:443](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L443)
134+
[packages/quickjs-emscripten-core/src/lifetime.ts:468](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L468)
135135

136136
***
137137

@@ -153,7 +153,7 @@ Just calls the standard .dispose() method of this class.
153153

154154
#### Source
155155

156-
[packages/quickjs-emscripten-core/src/lifetime.ts:448](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L448)
156+
[packages/quickjs-emscripten-core/src/lifetime.ts:473](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L473)
157157

158158
***
159159

@@ -183,7 +183,7 @@ Just calls the standard .dispose() method of this class.
183183

184184
#### Source
185185

186-
[packages/quickjs-emscripten-core/src/lifetime.ts:384](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L384)
186+
[packages/quickjs-emscripten-core/src/lifetime.ts:409](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L409)
187187

188188
***
189189

@@ -211,7 +211,7 @@ Just calls the standard .dispose() method of this class.
211211

212212
#### Source
213213

214-
[packages/quickjs-emscripten-core/src/lifetime.ts:391](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L391)
214+
[packages/quickjs-emscripten-core/src/lifetime.ts:416](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L416)
215215

216216
***
217217

@@ -239,7 +239,7 @@ Just calls the standard .dispose() method of this class.
239239

240240
#### Source
241241

242-
[packages/quickjs-emscripten-core/src/lifetime.ts:380](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L380)
242+
[packages/quickjs-emscripten-core/src/lifetime.ts:405](https://github.com/justjake/quickjs-emscripten/blob/main/packages/quickjs-emscripten-core/src/lifetime.ts#L405)
243243

244244
***
245245

0 commit comments

Comments
 (0)