
Security News
/Research
npm Phishing Email Targets Developers with Typosquatted Domain
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
CSV parser, compatible with parser-cache.
npm i parser-csv --save
npm test
var parser = require('parser-csv');
See parse-csv for the full range of options and features, and to report issues related to parsing.
parser.parse(str, options, function(err, res) {
if (err) { throw err; }
console.log(res);
});
parser.parseFile('fixtures/a.csv', function (err, res) {
if (err) { throw err; }
console.log(res);
});
var res = parser.parseSync(str, options);
console.log(res);
str
{String|Object}: The object or string to parse.options
{Object|Function}: or cb
callback function.cb
{Function}: callback function.Parse the given str
of CSV and callback cb(err, json)
.
str
{String|Object}: The object or string to parse.returns
: {Object}Parse the given str
of CSV and return an object.
str
{String|Object}: The object or string to parse.returns
: {Object}CSV file support. Parse the given str
of CSV and callback cb(err, data)
.
CSV file support. Parse a file at the given fp
.
fp
{String}options
{Object}: Options to pass to parse-csvparser.parseFile('foo/bar/baz.csv');
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert
Released under the MIT license
This file was generated by verb on November 24, 2014.
FAQs
CSV parser, compatible with [parser-cache].
We found that parser-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.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.
Security News
Knip hits 500 releases with v5.62.0, refining TypeScript config detection and updating plugins as monthly npm downloads approach 12M.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.