Merge branch 'code/test' into 'master'

bugfix: remove trailing / to urlPrefix

See merge request jiehong/jq_offline!2
This commit is contained in:
Jiehong 2021-09-22 20:03:15 +00:00
commit 780decac0b
2 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,14 @@
# Jq Offline (WASM)
# Jq Play Offline (WASM)
TODO
[Jq Play Offline](https://jiehong.gitlab.io/jq_offline/) is a web assembly
version of [jqplay](https://jqplay.org/), allowing you to _run_ the full featured
jq in your browser, without sending anything to any backend.
## Key features
- Reliable: this is the full fledge jq, not a re-implementation;
- Safe: no json leaves your browser, nobody knows what you do with it;
- Fast: not network round trip means faster results, and web assembly makes things _fast_;
- Offline: once you've opened the site once, you no longer need an internet connection.
Give it a try!

View File

@ -12,7 +12,7 @@
let CLI = await new Aioli({
tool: "jq",
version: "1.6",
urlPrefix: "./wasm/",
urlPrefix: "./wasm",
loading: "eager",
}, {
urlAioli: "./js/aioli.worker.js",