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

dumb-csv

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dumb-csv

Unfancy and dumb Node.js csv to json or markdown converter

  • 1.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
267
increased by41.27%
Maintainers
1
Weekly downloads
 
Created
Source

dumb-csv

NPM version Build Status Try it on gitpod

An unfancy CSV to JSON/markdown parsing lib with no streams or asynchrony

Install

npm install dumb-csv

Usage

const dumbcsv = require('dumb-csv')
dumbcsv
  .fromCSV({ data: 'hello,world', separator: ',', headerFields: ['a', 'b'] })
  .toJSON()
// [{"a":"hello","b":"world"}]

API

fromCSV(options: { data, file, separator = ',', headerFields, overrideExistingHeader, parseFloats = true }) : { toJSON: () => object, toMarkdown: () => string }

Input options object:

  • data (string) -- a string representing the CSV data
  • OR file (string) -- a path to the CSV
  • headerFields (optional string[]) -- an array of strings containing the headers for the CSV, assuming they are not the 1st line
  • overrideExistingHeader (optional bool) -- if the 1st line IS a header, but your headerFields should override it
  • parseFloats (default true) -- if we should try and convert rows that are numbers into JS Number's, or if false keep everything as strings

Output object :

  • toJSON() (function) -- calling this will return a javascript object that represents the CSV
  • toMarkdown() (function) -- calling this will return a string that has a formatted markdown table inside that represents the CSV

Keywords

FAQs

Package last updated on 21 Aug 2023

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