Gathering detailed insights and metrics for neat-csv
Gathering detailed insights and metrics for neat-csv
Gathering detailed insights and metrics for neat-csv
Gathering detailed insights and metrics for neat-csv
npm install neat-csv
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
321 Stars
33 Commits
15 Forks
7 Watching
1 Branches
5 Contributors
Updated on 20 Nov 2024
JavaScript (90.7%)
TypeScript (9.3%)
Cumulative downloads
Total Downloads
Last day
-0.8%
19,155
Compared to previous day
Last week
4.5%
107,841
Compared to previous week
Last month
-14.9%
455,516
Compared to previous month
Last year
-62.2%
19,549,503
Compared to previous year
2
Fast CSV parser
Convenience wrapper around the super-fast streaming csv-parser
module. Use that one if you want streamed parsing.
Parsing-related issues should be reported to csv-parser
.
1npm install neat-csv
1import neatCsv from 'neat-csv'; 2 3const csv = 'type,part\nunicorn,horn\nrainbow,pink'; 4 5console.log(await neatCsv(csv)); 6//=> [{type: 'unicorn', part: 'horn'}, {type: 'rainbow', part: 'pink'}]
Returns a Promise<object[]>
with the parsed CSV.
Type: string | Buffer | stream.Readable
The CSV data to parse.
Type: object
See the csv-parser
options.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 4/30 approved changesets -- score normalized to 1
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
0 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More