
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
#SOQ Simple Object Query Interface for JSON Array
##Synopsis
It's not going to be anther JSON Database. SOQ is made to find pure JSON Objects in a more elegant and unobstructive way. It may be extended to act as middle layer between client and server DB.
##Query Language We accept a simple string a query conditions. And at least you shuold tell the query object which type of objects you want to find.
var query = Query.build({
type: "vehicle",
conditions: "name = 'Ford'"
});
In fact, the query interface have learned a bunch of condition types:
And these condition operators are straightfoward.
It also should be noted that the value of a condition can be:
What's more you can pass mutiple conditions:
…
conditions: "name = 'Ford' and age > 3 or price < 1000"
…
Maybe you are wondering the priority of condtions. Yes, we don't support group conditions with parenthesises currently, which I have added into my TODO list. Anyway, I simply treat the former condition as the one with higher priority for now.
##Store In most of time, you don't deal with Query class directly. A Store Class is provided as gateway to access your data;
A simple use case:
var store = new Store();
store.add({
"name": "Ford",
"type": "vehicle"
}).add({
"name": "BMW",
"type": "vehicle"
}).add({
"name": "Bike",
"type": "other"
});
And then, we find what we want in this store:
var r = store.find({
type: "vehicle",
conditions: "name BEGINS_WITH 'B'"
});
//result is always in form of an array
//r[0].name == "BMW"
Also a getting-all-of-we-have method:
var all = store.all("vehicle");
//all.length === 2
Feel free to modify the objects you find in the store. But in the future, updating a record will be taken seriously with a specialized update method.
Removing a record:
store.remove(r[0]);//BMW is gone from our store!
More examples can be found at /spec/
##TODO
##Changes
##Contacts You can find me:
FAQs
Simple Object Query Interface for JSON Array
We found that soq 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.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.