Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
I was looking for a lightweight replacement for a database in one of my node.js workshops. This is the result: the data is stored in files. The rows are separated by new line characters and the fields are separated by semicolons. The first version of the database implementation was completely synchronous whereas the current version heavily relies on promises.
npm install csv-db
Given a file named input.csv of the following format (columns ID, username and password):
1;admin;secret;
##Initialization:
const CsvDb = require('csv-db');
const csvDb = new CsvDb('input.csv', ['id', 'username', 'password']);
If you omit the second argument of the constructor, the property names will be read from the first line
##Usage:
csvDb.get().then((data) => {
console.log(data);
}, (err) => {
console.log(err);
});
Create a file handle to access the database
Read either all data of a certain file or just one data set. The output is an array containing one or more objects, depending on what was fetched.
csvDb.get().then((data) => {
console.log(data);
}, (err) => {
console.log(err);
});
Insert a new row to the database. Data is an object with column names as keys and the values to be inserted as - the values.
const user = {
name: 'basti',
secret: 'topSecret'
};
csvDb.insert(user).then((data) => {
console.log(data);
}, (err) => {
console.log(err);
});
Update an existing row. Data is an object containing ALL the values excluding the id. id is the identifier of the row to be updated.
const user = {
id: 2,
name: 'basti',
secret: 'topSecret'
};
csvDb.update(user, 2).then((data) => {
console.log(data);
}, (err) => {
console.log(err);
});
Delete an existing row. id is the identifier of the row to be deleted.
csvDb.delete(2).then((data) => {
console.log(data);
}, (err) => {
console.log(err);
});
FAQs
Simple filebased database
We found that csv-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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.