Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

csv-to-pouch

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

csv-to-pouch

Parse CSV files and save their data to a PouchDB database.

  • 3.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

csv-to-pouch

Parse CSV files and save their data to a PouchDB database.

API

function parseCSVFile<T>(
	db: PouchDB.Database<T>,
	input: NodeJS.ReadableStream,
	transformer?: (row: any) => T,
): Promise<void>

Parse CSV data from the input stream and save it to the PouchDB database. Each row is saved as a seperate PouchDB document. If the _id prexists in the database, the existing document will be updated with the new version and the revision version will change.

  • db: Database to save results to.
  • input: Stream representing the CSV file, such as fs.createReadableStream('data.csv')
  • transformer: Optional function to transform CSV rows. Input row represents the CSV data, and the returned object will be used as a PouchDB document.

Command Line

Examples:

csv-to-pouch http://localhost:5984/mydb < data.csv
csv-to-pouch --db http://localhost:5984/mydb -i data.csv
csv-to-pouch /path/to/mydb < data.csv
csv-to-pouch http://localhost:5984/mydb -u myUsername -p myPassword < data.csv

Options:

--db            URL or filepath to database
-i, --input     CSV file path. Can also pipe from stdin.
-h, --help      Show help text
-u, --username  Username for password-protected database
-p, --password  Password for password-protected database

FAQs

Package last updated on 14 Nov 2019

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc