Security News
Node.js EOL Versions CVE Dubbed the Worst CVE of the Year by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@osaas/client-db
Advanced tools
SDK for Open Source Cloud DB services
Prerequisites
npm install --save @osaas/client-db
Example code creating a Valkey database and use a Redis client to connect with it
import { Context, Log } from '@osaas/client-core';
import { ValkeyDb } from '@osaas/client-db';
import Redis from 'ioredis';
async function main() {
const context = new Context();
try {
const db = new ValkeyDb({ context, name: 'mydb' });
await db.init();
const redisUrl = await db.getRedisUrl();
const client = new Redis({ host: redisUrl.hostname, port: redisUrl.port });
} catch (err) {
Log().error(err);
}
}
main();
FAQs
Open Source Cloud Client SDK database library
We found that @osaas/client-db demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.