All Projects → fiatjaf → Jq Web

fiatjaf / Jq Web

Licence: other
jq in the browser with emscripten.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Jq Web

Camaro
camaro is an utility to transform XML to JSON, using Node.js binding to native XML parser pugixml, one of the fastest XML parser around.
Stars: ✭ 438 (+132.98%)
Mutual labels:  emscripten, json
Java Jq
Lightweight Java wrapper around JQ, a flexible JSON processor available for multiple platforms
Stars: ✭ 37 (-80.32%)
Mutual labels:  json, jq
Jqview
simplest possible native GUI for inspecting JSON objects with jq
Stars: ✭ 355 (+88.83%)
Mutual labels:  json, jq
Yq
Command-line YAML, XML, TOML processor - jq wrapper for YAML/XML/TOML documents
Stars: ✭ 1,688 (+797.87%)
Mutual labels:  json, jq
Node Jq
Node.js wrapper for jq
Stars: ✭ 147 (-21.81%)
Mutual labels:  json, jq
Jackson Jq
jq for Jackson Java JSON Processor
Stars: ✭ 178 (-5.32%)
Mutual labels:  json, jq
Aws
A collection of bash shell scripts for automating various tasks with Amazon Web Services using the AWS CLI and jq.
Stars: ✭ 493 (+162.23%)
Mutual labels:  json, jq
Jqr
R interface to jq
Stars: ✭ 123 (-34.57%)
Mutual labels:  json, jq
Oq
A performant, and portable jq wrapper to facilitate the consumption and output of formats other than JSON; using jq filters to transform the data.
Stars: ✭ 132 (-29.79%)
Mutual labels:  json, jq
Json Splora
GUI for editing, visualizing, and manipulating JSON data
Stars: ✭ 1,818 (+867.02%)
Mutual labels:  json, jq
Emuto
manipulate JSON files
Stars: ✭ 180 (-4.26%)
Mutual labels:  json, jq
Json To Simple Graphql Schema
Transforms JSON input into a GraphQL schema
Stars: ✭ 185 (-1.6%)
Mutual labels:  json
Go init
一个用go组织项目结构,主要包括 gin, goredis, gorm, websocket, rabbitmq等。👉
Stars: ✭ 183 (-2.66%)
Mutual labels:  json
Feed Module
Everyone deserves RSS, ATOM and JSON feeds!
Stars: ✭ 182 (-3.19%)
Mutual labels:  json
Circe
Yet another JSON library for Scala
Stars: ✭ 2,223 (+1082.45%)
Mutual labels:  json
Cryptocurrencies
📋 Get a list of all the cryptocurrency symbols and names.
Stars: ✭ 186 (-1.06%)
Mutual labels:  json
Json File Store
A simple JSON store for Node.js
Stars: ✭ 186 (-1.06%)
Mutual labels:  json
Json C
https://github.com/json-c/json-c is the official code repository for json-c. See the wiki for release tarballs for download. API docs at http://json-c.github.io/json-c/
Stars: ✭ 2,313 (+1130.32%)
Mutual labels:  json
Zson
专为测试人员打造的JSON解析器
Stars: ✭ 181 (-3.72%)
Mutual labels:  json
Fulfillment Webhook Json
Dialogflow's Fulfillment: Webhook JSON (Requests & Responses)
Stars: ✭ 181 (-3.72%)
Mutual labels:  json

npm badge Mentioned in Awesome jq

jq-web

This is a build of jq, the command-line JSON processor in Javascript using Emscripten along with a wrapper for making it usable as a library.

It runs in the browser.

install and use

npm install jq-web
var jq = require('jq-web')

jq.json({
  a: {
    big: {
      json: [
        'full',
        'of',
        'important',
        'things'
      ]
    }
  }
}, '.a.big.json | ["empty", .[1], "useless", .[3]] | join(" ")')

The code above returns the string "empty of useless things".

You could do the same using the promised API with jq.promised.json({...}).then(result => {}). That is useful if you're loading a .mem or .wasm file, as the library won't return the correct results until these files are asynchronously fetched by the Emscripten runtime.

What is each file

The releases page has a bunch of different files you can download, here's what they all mean:

file description pros cons
jq.asm.js asm.js version runs in most places requires loading jq.asm.js.mem
jq.asm.min.js minified version of the above idem idem
jq.asm.js.mem memory initialization file for asm.js, needed by jq.asm.js and jq.asm.min.js
jq.asm.bundle.js asm.js version with memory initialization embedded doesn't require loading anything big and slow
jq.asm.bundle.min.js minified version of the above idem the minification has no effect in the memory initialization stuff
jq.wasm.js WebAssembly wrapper smaller, much much faster requires loading jq.wasm.wasm
jq.wasm.min.js minified WebAssembly wrapper since this is just a wrapper around jq.wasm.wasm, the minification makes almost no difference here
jq.wasm.wasm actual WebAssembly binary, loaded by jq.wasm.js and jq.wasm.min.js

When in doubt, just use jq.wasm.js, it is the best!

Webpack issues

fs

The Emscripten runtime will try to require the fs module, and if it fails it will resort to an in-memory filesystem (almost no use of that is made of the library, but it is needed somehow). In Browserify there's a default {} that corresponds to the fs module, but in Webpack you must declare it as an empty module.

404 error when loading .wasm files

By default projects compiled with Emscripten look for .wasm files in the same directory that the .js file is run from. This causes issues when using webpack because name of the .wasm file is altered with a hash and can be placed in a different directory. To fix this problem you can use the copy-webpack-plugin to copy the jq.wasm file to the same directory that the webpack bundle is placed.

Reference

jq.json(<object>, <filter>) <object> will take a Javascript object, or scalar, whatever, and dump it to JSON, then it will return whatever your filter outputs and try to convert that into a JS object. If you're loading .mem or .wasm files asynchronously this will return {} every time you call it until the loading is finished.

jq.raw(<json-string>, <filter>) <raw-output> will take a string that will be passed as it is to jq (like if you were doing echo '<json-string>' | jq <filter> on the command line) then return a string with the raw STDOUT response. If you're loading .mem or .wasm files asynchronously this will return '{}' every time you call it until the loading is finished.

jq.onInitialized.addListener(<function>) registers a function to be called when .mem or .wasm files have finished loading and the library is ready to be used. You should register callbacks here to rerun your functions if you're using the sync API (above). If you're using the promised API (below) you don't ever need to look at this. Also, if you're using the sync API but just at a long time after the page is loaded and the user inputs something, for example, you may not need to use this at all.

jq.promised.json(<object>, <filter>) Promise<object> will do the same as jq.json() but returning a Promise to the result instead. This is safe to use anytime.

jq.promised.raw(<json-string>, <filter>) Promise<raw-output> will do the same as jq.raw() but returning a Promise to the result instead. This is safe to use anytime.

Build

  1. Install Emscripten from source, we used 1.38.12
  2. Clone jq-web and cd into it
  3. Look over the Makefile for more Emscripten instructions
  4. make
    • This may take a while the first time if you have never ran Emscripten before

Test

A handful of tests exist in test.js and are good place to start when verifying a build

  1. npm install or yarn
  2. node test.js
  3. ./node_modules/live-server/live-server.js --open="index.html"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].