Socket
Socket
Sign inDemoInstall

babyparse

Package Overview
Dependencies
0
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    babyparse

Fast and reliable CSV parser based on PapaParse


Version published
Weekly downloads
65K
increased by13.15%
Maintainers
2
Install size
58.9 kB
Created
Weekly downloads
 

Readme

Source

Baby Parse

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.

Installation

// simply install using npm
npm install babyparse

Basic Usage

// pass in the contents of a csv file
parsed = Baby.parse(csv);

// voila
rows = parsed.data;

Parse File(s)

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.

Credits

Rich Harris forked Papa Parse to make Baby Parse. Matt Holt (the author of Papa Parse) helps maintain this fork.

License

The original PapaParse is MIT licensed. So is BabyParse.

Keywords

FAQs

Last updated on 03 May 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc