
Security News
AI Slop Is Polluting Bug Bounty Platforms with Fake Vulnerability Reports
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.
A fast and simple database handler for Browser and Node.
npm install aquadb
yarn add aquadb
You can go here by clicking.
const AquaDB = require("aquadb");
const Adapter = require("aquadb/adapters/JsonDB", {
"name": "crazy-database",
"separator": ".",
"autoFile": true,
"ignoreWarns": false
});
const db = new AquaDB(Adapter);
db.on("data", (packet) => {
console.log(packet);
});
db.set("x.y.z", "test"); // {"x": {"y": {"z": "test"}}}
db.get("x"); // {"y": {"z": "test"}}
db.has("x"); // true
db.delete("x.y.z"); // true
db.all(); // {"x": {"y": {}}}
db.deleteAll(); // true
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/aquadb/dist/AquaDB.js"></script>
<script src="https://unpkg.com/aquadb/dist/LocalStorage.js"></script>
<title>AquaDB</title>
</head>
<body>
<script>
const db = new AquaDB(LocalStorage, {
"name": "crazy-database",
"separator": "."
});
db.on("data", (packet) => {
console.log(packet);
});
db.set("x.y.z", "test"); // {"x": {"y": {"z": "test"}}}
db.get("x"); // {"y": {"z": "test"}}
db.has("x"); // true
db.delete("x.y.z"); // true
db.all(); // {"x": {"y": {}}}
db.deleteAll(); // true
</script>
</body>
</html>
Click here for more features.
JsonDB | BsonDB | YamlDB
LocalStorage
Ceyhun 💻 📖 🤔 📆 ⚠️ |
If you want to help, you can open a issue.
FAQs
A fast and simple database handler for Browser and Node.
The npm package aquadb receives a total of 75 weekly downloads. As such, aquadb popularity was classified as not popular.
We found that aquadb 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
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.
Research
Security News
The Socket Research team investigates a malicious Python package disguised as a Discord error logger that executes remote commands and exfiltrates data via a covert C2 channel.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.