
Product
A Fresh Look for the Socket Dashboard
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
npm install wio.db
Some bug fixed and performance improved.
const {
JsonDatabase,
YamlDatabase
} = require("wio.db");
const db = new JsonDatabase({
databasePath:"./databases/myJsonDatabase.json"
});
const yamldb = new YamlDatabase({
databasePath: "./databases/myYamlDatabase.yml"
});
// Data set | get
db.set("test", 1);
db.get("test");
db.fetch("test");
// Data exists
db.has("test");
db.exists("test");
// Get all data
db.all(5); || db.all();
db.fetchAll(5); || db.fetchAll();
// To JSON
db.toJson(5); || db.toJson();
// Delete data
db.delete("test");
db.deleteAll();
db.findAndDelete((element,db) => {
return element.ID.includes("test");
});
// Get data type
db.type("test"); // ---> number
// DB Array methods
db.push("testArray", 10);
db.pull("testArray", (element, index, array) => element < 10, true); // Multiple options = true. (default false)
db.valueArray();
db.keyArray();
// DB Math metods
db.math("test","*", 3);
db.add("test", 10);
db.substr("test", 5);
// DB Finding methods
db.includes("tes");
db.startsWith("t");
// Infos
console.log(db.size);
console.log(db.info);
// Destroy DB
db.destroy();
FAQs
Gözle okunabilir database modülü.
The npm package wio.db receives a total of 3,025 weekly downloads. As such, wio.db popularity was classified as popular.
We found that wio.db 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.
Product
We’ve redesigned the Socket dashboard with simpler navigation, less visual clutter, and a cleaner UI that highlights what really matters.
Industry Insights
Terry O’Daniel, Head of Security at Amplitude, shares insights on building high-impact security teams, aligning with engineering, and why AI gives defenders a fighting chance.
Security News
MCP spec updated with structured tool output, stronger OAuth 2.1 security, resource indicators, and protocol cleanups for safer, more reliable AI workflows.