
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
rjson-search
Advanced tools
A recursive JSON search for words anywhere within the structure.
$ npm install rjson-search
var rjsonSearch = require('rjson-search');
var programmers = [
{
"id": 1,
"name": "jesse",
"age": 104,
"programmer": true,
"experience": "Programs in javascript, objective-c, and ruby",
"languages": ["javascript"],
"employmentHistory": [
{
"name": "Chromocell"
},
{
"name": "Rutgers"
},
{
"name": "ICC Lowe Thermal"
},
{
"name": "Littlebigberry"
},
{
"name": "Shopbeam"
},
{
"name": "Media Group"
}
],
"beverage": [
{
"name": "coffee",
"condiments": [
{
"name": "sugar",
"amount": "2tbs"
}
]
}
]
},
{
"id": 2,
"name": "matt",
"age": 105,
"programmer": true,
"experience": "Programs in javascript and actionscript",
"languages": ["javascript"],
"employmentHistory": [
{
"name": "ICC Lowe Thermal"
},
{
"name": "Media Group"
}
]
},
{
"id": 3,
"name": "stephen",
"age": 105,
"programmer": true,
"experience": "Programs in javascript and objective-c",
"languages": ["javascript"],
"employmentHistory": [
{
"name": "ICC Lowe Thermal"
},
{
"name": "Canfield"
}
]
}
];
var jesseObj = programmers[0];
var result = rjsonSearch.objectContainsQuery(jesseObj, 'jesse');
assert(result, true);
var javascriptProgrammers = rjsonSearch.find(programmers, 'javascript');
console.log(javascriptProgrammers.length); // 3
console.log(javascriptProgrammers[0].name); // jesse
console.log(javascriptProgrammers[1].name); // matt
console.log(javascriptProgrammers[2].name); // stephen
var shopbeamEmployees = rjsonSearch.find(programmers, 'Shopbeam');
console.log(javascriptProgrammers.length); // 1
console.log(shopbeamEmployees[0].name); // jesse
FAQs
A recursive JSON search for words anywhere within the structure.
The npm package rjson-search receives a total of 3 weekly downloads. As such, rjson-search popularity was classified as not popular.
We found that rjson-search demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.