From 223a4b23ba9ad14380f5592df31e8ed8e3e152a1 Mon Sep 17 00:00:00 2001 From: Jiehong Ma Date: Wed, 22 Sep 2021 22:02:57 +0200 Subject: [PATCH] bugfix: remove trailing / to urlPrefix --- README.md | 15 +++++++++++++-- public/index.html | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e21f48d..ea5e174 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,14 @@ -# Jq Offline (WASM) +# Jq Play Offline (WASM) -TODO \ No newline at end of file +[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! diff --git a/public/index.html b/public/index.html index 03831d7..94e5e36 100755 --- a/public/index.html +++ b/public/index.html @@ -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",