
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
The most proper RDBMS wrapper for dynamic languages like Javascript. Embraces the beauty of both worlds
The most proper RDBMS wrapper for dynamic languages like Javascript. Embraces the beauty of both worlds
npm i --save thin-rdb
const {createThinRdb, pt} = require("thin-rdb");
const rdb = createThinRdb(dbSchema);
await rdb.select(con, "top 1 employee_location join employee, location as l", {location_id: "loc:1"})
Which output:
[
{
"employee_id": "emp:john",
"location_id": "loc:1",
"employee": {
"id": "emp:john",
"name": "John Doe",
"company_id": "com:1"
},
"l": {
"id": "loc:1",
"company_id": "com:1"
}
}
]
This support nested joins too, like:
employee_location join (employee join person), location as l
Or custom join by field with by:
employee_location join employee by employee_id as emp
And with field faces, so we can show/hide fields for certain queries, for example:
rdb.select(con, "person!secret") will contain “password” field, while rdb.select(con, "person") will not,
with password field declared as: password: "!secret",
Select single field: rdb.select(con, "person.id", {name: "A"})
FAQs
The most proper RDBMS wrapper for dynamic languages like Javascript. Embraces the beauty of both worlds
We found that thin-rdb 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.