Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.