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.
connect-csv
Advanced tools
Connect Middleware for parsing incoming text/csv
data type.
csv = require('connect-csv');
var app = express();
app.use(csv()); // Prepends header row only for 'text/csv; header=absent'
app.use(csv({ header: 'guess' })); // Prepend header row heuristically
app.use(csv({ header: ['x','y','z'] })); // Always prepend this row
app.use(csv({ header: 'present' })); // Never prepend header row
This middleware parses the Content-Type
header, and sets
request.body
to an array-of-array structure for text/csv
data,
as defined in RFC 4180.
By default, if the MIME type is text/csv; header=absent
, we
prepend request.body
with an array of ["_0", "_1", ...]
which serves as a default header row.
If header
middleware parameter is guess
, and if any field in the
first row begin with numbers, then it's treated the same way as
header=absent
.
To the extent possible under law, 唐鳳 has waived all copyright and related or neighboring rights to connect-csv.
This work is published from Taiwan.
FAQs
Connect middleware for accepting text/csv data type
The npm package connect-csv receives a total of 0 weekly downloads. As such, connect-csv popularity was classified as not popular.
We found that connect-csv 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.