
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
LuaDB is a lightweight local database with no dependencies and easy to use.
Node.DB is a lightweight local database with no dependencies and easy to use.
Node.js v14.0.0 or newer is recommended.
Install: npm install node.db
Setting up the Node.DB instance
database.js
const DatabaseManager = require("node.db");
module.exports = {
connection: new DatabaseManager.NodeDB({
dbpath: __dirname + "/database"
})
};
Example Usage
test.js
const database = require("./database.js");
const db = database.connection;
if(db.collections.includes("users") === false) db.createCollection("users");
/* ------- insert item into db ------- */
db.collection("users").insertOne({
name: "TestUser",
age: 26,
banned: false
}).then(() => {
//ok user created;
}).catch(error => {
//error;
console.log(error);
});
/* ------- find item ------- */
db.collection("users").findOne({name: "TestUser"}).then(item => {
//ok found the user;
console.log(item);
/*
console output => {
_id: "3bgfvx99l1t99j0pxouv3u8y00fy6n49",
name: "TestUser",
age: 26,
banned: false
}
*/
}).catch(() => {
//error not found;
});
/* ------- update item ------- */
db.collection("users").updateOne({_id: "3bgfvx99l1t99j0pxouv3u8y00fy6n49"}, {
"$set": {
banned: true
}
}).then(() => {
//ok user updated;
}).catch(error => {
//error not found;
console.log(error);
});
/* ------- delete item ------- */
db.collection("users").deleteOne({name: "TestUser", banned: true}).then(() => {
//ok user removed from db;
}).catch(error => {
console.log(error);
});
If you are experiencing problems, or you just need a nudge in the right direction, please do not hesitate to create a New Issue on Github repository.
FAQs
LuaDB is a lightweight local database with no dependencies and easy to use.
The npm package lua.db receives a total of 0 weekly downloads. As such, lua.db popularity was classified as not popular.
We found that lua.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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.