diff options
author | stephan <stephan@noemail.net> | 2022-11-19 16:16:40 +0000 |
---|---|---|
committer | stephan <stephan@noemail.net> | 2022-11-19 16:16:40 +0000 |
commit | 8d0d409876b2bfb6ebe6163ebedefeb8fb9b337f (patch) | |
tree | 1d5d5f27bc8b309a72f0e4c94c7eeacaef8b9cb3 /ext/wasm/index-dist.html | |
parent | 1e62057436a904f02e710adb264f539c51a0b66c (diff) | |
download | sqlite-8d0d409876b2bfb6ebe6163ebedefeb8fb9b337f.tar.gz sqlite-8d0d409876b2bfb6ebe6163ebedefeb8fb9b337f.zip |
Get tester1.js working via an ES6 worker module and add that variant to the dist zipfile.
FossilOrigin-Name: 90480586f1b2ad82118e19536b095431b8457f294c0afaa9b4f883f184cc804c
Diffstat (limited to 'ext/wasm/index-dist.html')
-rw-r--r-- | ext/wasm/index-dist.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ext/wasm/index-dist.html b/ext/wasm/index-dist.html index 2333190d9..29891c91e 100644 --- a/ext/wasm/index-dist.html +++ b/ext/wasm/index-dist.html @@ -56,9 +56,15 @@ utility code.</li> <li><a href='tester1-worker.html'>tester1-worker</a>: same thing but running in a Worker.</li> - <li><a href='tester1-esm.html'>tester1-esm</a>: same thing - but loaded in the main thread via an ES6 module. Note that - not all browsers permit loading modules in Worker threads. + <li><a href='tester1-esm.html'>tester1-esm</a>: same as + <code>tester1</code> but loads sqlite3 in the main thread via + an ES6 module. + </li> + <li><a href='tester1-worker.html?esm'>tester1-worker?esm</a>: + same as <code>tester1-esm</code> but loads a Worker Module which + then loads the sqlite3 API via an ES6 module. Note that + not all browsers permit loading modules in Worker + threads. </li> </ul> </li> |