Files
bruno/packages/bruno-query
Sid 7c4da8b8bc security: fix all critical vuln dependency reports (#7645)
* chore: remove form-data vuln

* chore: stale aws in lock

* chore: other critical vulns

* chore: correct deps
2026-04-01 23:42:06 +05:30
..
2023-02-19 22:48:34 -06:00
2023-02-19 22:48:34 -06:00

bruno-query

Bruno query with deep navigation, filter and map support

Easy array navigation

get(data, 'customer.orders.items.amount')

Deep navigation .. double dots

get(data, '..items.amount')

Array indexing

get(data, '..items[0].amount')

Array filtering [?] with corresponding filter function

get(data, '..items[?].amount', i => i.amount > 20) 

Array filtering [?] with simple object predicate, same as (i => i.id === 2 && i.amount === 20)

get(data, '..items[?]', { id: 2, amount: 20 }) 

Array mapping [?] with corresponding mapper function

get(data, '..items..amount[?]', amt => amt + 10) 

Publish to Npm Registry

npm publish --access=public