
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
An in memory/file based database that can run on multiple threads.
npm i --save daclusta
const db = require('daclusta').promises
async function example () {
const connection = await db.connect('./db.json');
const insertedRecord = await db.post(connection, {
firstName: 'Joe',
lastName: 'Bloggs
});
const readRecord = await db.get(connection, insertedRecord.meta.id);
await db.close(connection);
// readRecord.doc === { example: 1 }
}
example()
| Method | Arguments | Description | |
|---|---|---|---|
|
Connection These methods control opening and closing database connections. | |||
| 1.1 | .connect | filename | Connect to a database. Will create if does not exist. |
| 1.2 | .close | connection | Close a connection. |
|
Actions These methods allow operating on a connection | |||
| 2.1 | .get | connection, id | Get a record on a database by id. |
| 2.2 | .post | connection, record | Create a new record on a database. |
| 2.3 | .put | connection, id, newRecord | Replace an existing record with another on a database. |
| 2.4 | .patch | connection, id, partialRecord, | Set some properties on an existing record on a database. |
| 2.5 | .del | connection, id | Delete an existing record on a database. |
| 2.6 | .addListener | connection, handler | Listen to changes. |
| 2.7 | .removeListener | connection, handler | Stop listening to changes. |
This project is licensed under the terms of the AGPL-3.0 license.
FAQs
An in memory and file based database that can run on multiple threads
The npm package daclusta receives a total of 1 weekly downloads. As such, daclusta popularity was classified as not popular.
We found that daclusta 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.