
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
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
The npm package csv-db receives a total of 260 weekly downloads. As such, csv-db popularity was classified as not popular.
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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.