![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Fast and reliable CSV parser based on Papa Parse. Papa Parse is for the browser, Baby Parse is for Node.js.
This package has all the functionality of Papa Parse except for web workers and parsing directly from files. You can pass a string to Baby Parse and use any of the other config options as described in the Papa Parse documentation.
// simply install using npm
npm install babyparse
// pass in the contents of a csv file
parsed = Baby.parse(csv);
// voila
rows = parsed.data;
Baby Parse will assume the input is a filename if it ends in .csv or .txt.
// Parse single file
parsed = Baby.parseFiles(file[, config])
rows = parsed.data
// Parse multiple files
// Files can be either an array of strings or objects { file: filename[, config: config] }
// When using and array of objects and you include a config it will be used in place of the global config
parsed = Baby.parseFiles(files[, globalConfig])
rows = parsed[index].data
For a complete understanding of the power of this library, please refer to the Papa Parse web site.
Rich Harris forked Papa Parse to make Baby Parse. Matt Holt (the author of Papa Parse) helps maintain this fork.
The original PapaParse is MIT licensed. So is BabyParse.
FAQs
Fast and reliable CSV parser based on PapaParse
The npm package babyparse receives a total of 41,733 weekly downloads. As such, babyparse popularity was classified as popular.
We found that babyparse demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.