0.0.23 • Published 3 months ago

jsjq v0.0.23

Weekly downloads
-
License
ISC
Repository
github
Last release
3 months ago

jsjq - jq with ECMAScript syntax

npm version Test Status Release Status

it uses eval() to run your code, be warned (code is checked and run using safe-eval)

Usage with npx:

npx jsjq '.data.map(x => x*2)' '{"data": [1, 2, 3]}'
# output: [2, 4, 6]

Normal usage:

npm i -g jsjq 

# from JSON string
jsjq '.data.map(x => x*2)' '{"data": [1, 2, 3]}'

# from JSON file
jsjq '.data.map(x => x*2)' example.json

Pipe usage:

echo '{"data": [1, 2, 3]}' | jsjq '.data.map(x => x*2)' 

Custom object methods (may be overridden by properties with the same name):

jsjq '.data.listKeys()' '{ "data": {"a": 1, "b": 2, "c": 3} }'
# output: [ 'a', 'b', 'c' ]

jsjq '.data.listValues()' '{ "data": {"a": 1, "b": 2, "c": 3} }'
# output: [ 1, 2, 3 ]

jsjq '.data.listEntries()' '{ "data": {"a": 1, "b": 2, "c": 3} }'
# output: [ [ 'a', 1 ], [ 'b', 2 ], [ 'c', 3 ] ]

jsjq '.data.stringify()' '{ "data": {"a": 1, "b": 2, "c": 3} }'
# output: '{"a":1,"b":2,"c":3}'

# override:
jsjq '.data.stringify()' '{ "stringify": 123 }'
# will throw an error

Custom array methods:

jsjq '.data.compact()' '{ "data": [1, 2, 2, 3] }'
# output: [ 1, 2, 3 ]

jsjq '.data.stringify()' '{ "data": [1, 2, 2, 3] }'
# output '[1,2,2,3]'

Options:

  • -c, --compact-output compact instead of pretty-printed output;
  • -r, --raw-output output strings without escapes and quotes;
  • -i, --interactive run jsjq in interactive mode (experimental)
  • -t, --type print the type of the value instead of the value itself;
  • -v, --version show the version;
  • -h, --help show the help;

Code check:

jsjq '.data; process.exit(1)' '{}'
# will throw an error
0.0.23

3 months ago

0.0.20

3 months ago

0.0.21

3 months ago

0.0.22

3 months ago

0.0.19

3 months ago

0.0.10

3 months ago

0.0.11

3 months ago

0.0.12

3 months ago

0.0.13

3 months ago

0.0.14

3 months ago

0.0.3

3 months ago

0.0.15

3 months ago

0.0.9

3 months ago

0.0.16

3 months ago

0.0.8

3 months ago

0.0.17

3 months ago

0.0.18

3 months ago

0.0.5

3 months ago

0.0.4

3 months ago

0.0.7

3 months ago

0.0.6

3 months ago

0.0.2

3 months ago

0.0.1

3 months ago