ceseve

Convert arrays of data to CSV files


Keywords
csv, parser, parse, tab, delimiter, separator, comma, values, separated, string, text, javascript, node-js, hacktoberfest, csv-parser
License
MIT
Install
npm install ceseve@1.2.1

Documentation

Build Status

All Contributors

install size

ceseve

Convert array of data to CSV file

Install

$ npm install ceseve

Usage

const csv = require('ceseve');

const data = [
  { title: "foo", property: "bar" },
  { title: "foo_2", property: "bar_2" }
];

const csvDocument = csv(data);
// csv:
//  title,property
//  foo,bar
//  foo_2,bar_2

You can specify options object:

const csvDocument = csv(data, {
  separator: ';',
});
// csv:
//  title;property
//  foo;bar
//  foo_2;bar_2

License

MIT © Carlos Azaustre

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Carlos Azaustre

💻

Sebastian Duque Restrepo

💻

This project follows the all-contributors specification. Contributions of any kind welcome!