Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
objectify-arrays
Advanced tools
Rod Vagg made an awesome little tool for parsing CSV files with the Streams2 API. I wanted to take the first row of a CSV and use it as object keys for every subsequent row. As a result, Objectify Arrays was born.
It's purposely small, flexible, and lightweight so that you can bend it to fit your needs.
Install the module with: npm install objectify-arrays
var csv2 = require('csv2'),
fs = require('fs'),
objectify = require('objectify-arrays');
var objectifiedCSVRows = [];
fs.createReadStream('some_csv_file.csv')
.pipe(csv2())
.pipe(objectify())
.on('data', function (data) {
objectifiedCSVRows.push(data);
})
.on('end', console.log);
The stream has two methods: getHeader
and setHeader
. If the header isn't set, it will use the first array streamed to it for the headers. If your CSV or other data source doesn't have headers, then you can just set them yourself before processing the stream.
Objectify Arrays will ignore any addition elements in an array that it doesn't have keys for.
Beyond that, it's subclassed from stream.Transform
, so it has inherited all of those abilities.
Copyright (c) 2013 Steve Kinney. Licensed under the MIT license.
FAQs
Create objects from arrays using the Streams2 API.
We found that objectify-arrays 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.