This repository has been archived by the owner on Jun 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Joel Purra edited this page Jan 28, 2015
·
8 revisions
Welcome to the jqnpm
wiki!
Please edit as you see fit - open source is a collaborative effort.
- https://github.com/joelpurra/jq-fallbacks
- https://github.com/joelpurra/jq-object-sorting
- https://github.com/joelpurra/jq-key-counter
- https://github.com/joelpurra/jq-zeros
- https://github.com/joelpurra/jq-stress
- https://github.com/joelpurra/jq-dry
- https://github.com/joelpurra/jq-disarray
- https://github.com/joelpurra/jq-counter-buckets
- https://github.com/joelpurra/jq-ratio-buckets
- https://github.com/joelpurra/jq-interval-buckets
- https://github.com/joelpurra/jq-math
- https://github.com/joelpurra/jq-bigint
- https://github.com/joelpurra/jq-random-prng-bsd
- https://github.com/joelpurra/jq-random-prng-microsoft
- https://github.com/joelpurra/jq-random-prng-vdc
-
https://github.com/joelpurra/jq-bugfix-jq-552 (detection/workaround for
jq
issue #552) - Your package here!
See the listed packages for inspiration, as well as the jqnpm generate
template.
- Run
jqnpm generate
andcd <package name>
-
jqnpm install joelpurra/jq-object-sorting
. - In
<package name>/jq/main.jq
addimport "joelpurra/jq-object-sorting" as ObjectSorting;
- Use with
{ "b": 50, "a": 100} | ObjectSorting::byValueDesc
to get{ "a": 100, "b": 50 }
.