Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 15, 2024 via pnpm

papaparse 5.4.1

Fast and powerful CSV parser for the browser that supports web workers and streaming large files. Converts CSV to JSON and JSON to CSV.
Package summary
Share
0
issues
1
license
1
MIT
Package created
19 Nov 2014
Version published
23 Mar 2023
Maintainers
2
Total deps
1
Direct deps
0
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
papaparse@5.4.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
β“˜ This is a list of papaparse 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does papaparse do?

Papa Parse is a fast and powerful CSV parser for JavaScript, designed specifically for browser use. It supports web workers and can stream large files. In addition to parsing CSV files directly (both local and over the network), Papa Parse can convert CSV to JSON and vice versa. Furthermore, it comes with an auto-detection feature for delimiters and offers worker threads to keep web pages responsive. It also provides support for header rows and enables pause, resume, and abort operations. Remarkably, Papa Parse doesn't have any dependencies, not even jQuery.

How do you use papaparse?

To use Papa Parse, you can install it via npm using the command npm install papaparse. If you prefer not to use npm, you can directly download the papaparse.min.js file to your project source from https://unpkg.com/papaparse@latest/papaparse.min.js. In a Node.js environment, Papa Parse can parse a Readable Stream instead of a File, and it also supports node-style streaming with the .pipe method. A sample usage can be:

let Papa = require('papaparse');
let csvData = `"column1","column2"
"value1","value2"`;
let results = Papa.parse(csvData);
console.log(results.data);

Where are the papaparse docs?

Papa Parse offers comprehensive documentation, which contains more detailed information on how to use the package and provides further examples. The documentation can be found at http://papaparse.com/docs. The package's GitHub repository documentation mholt/PapaParse also provides additional details on its usage and features.