
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
csv-append-write-read
Advanced tools
Using is simple.
To read a csv, simply require the module and await read.
(async () => {
const csvUtil = require('../util/csv');
const rows = await csvUtil.read('test.csv');
console.log(rows);
})();
To write rows, create an array of objects with keys named after the columns and call csv.write
(async () => {
const rows = [];
for (let i = 0; i < 10; i++) {
rows.push({
columnNumber: i,
ref: 'test'
});
}
await require('./util/csv').write(rows, 'test.csv');
})();
To append rows on an already made csv, call csv.append.
(async () => {
await require('fs/promises').writeFile('appendrows.csv', 'col1,col2,col3\n', 'utf-8');
const csv = require('../util/csv');
for (let i = 0; i < 5; i++) {
await csv.append({
col1: `data1-${i}`,
col2: `data2-${i}`,
col3: `data3-${i}`
}, 'appendrows.csv');
}
})();
FAQs
csv utility package
We found that csv-append-write-read 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.