# ceseve

> Convert arrays of data to CSV files

Latest version **1.2.1** (published 2020-10-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install ceseve
pnpm add ceseve
yarn add ceseve
bun add ceseve
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2020-10-18 |
| First published | 2019-03-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 5.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Carlos Azaustre |
| Maintainers | carlosazaustre |
| Keywords | csv, parser, parse, tab, delimiter, separator, comma, tab, values, separated, string, text |

## Links

- npm: https://www.npmjs.com/package/ceseve
- Repository: git@github:carlosazaustre/ceseve
- Homepage: https://github.com/carlosazaustre/ceseve#README.md
- Issues: https://github.com/carlosazaustre/ceseve/issues
- npm.io page: https://npm.io/package/ceseve

## Dependencies (1)

- [defaults](https://npm.io/package/defaults.md) ^1.0.3

## Alternatives

- [@sapphire/ratelimits](https://npm.io/package/@sapphire/ratelimits.md) — 4.4K weekly downloads
- [js-csvparser](https://npm.io/package/js-csvparser.md) — 2.0K weekly downloads
- [@adadapted/js-sdk](https://npm.io/package/@adadapted/js-sdk.md) — 251 weekly downloads
- [@grapecity/spread-sheets-sparklines](https://npm.io/package/@grapecity/spread-sheets-sparklines.md) — 103 weekly downloads
- [@1selfworld/adchain-sdk-react-native](https://npm.io/package/@1selfworld/adchain-sdk-react-native.md) — 80 weekly downloads

## Recent versions

- 1.2.1 (latest) — 2020-10-18
- 1.2.2 — 2020-10-18
- 1.2.0 — 2019-04-06
- 1.1.0 — 2019-04-05
- 1.0.6 — 2019-04-01
- 1.0.5 — 2019-03-31
- 1.0.0 — 2019-03-30

## README

[![Build Status](https://travis-ci.org/carlosazaustre/ceseve.svg?branch=master)](https://travis-ci.org/carlosazaustre/ceseve)
[![install size](https://packagephobia.now.sh/badge?p=ceseve)](https://packagephobia.now.sh/result?p=ceseve)

# ceseve
> Convert array of data to CSV file

## Install
```
$ npm install ceseve
```

## Usage
```js
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:
```js
const csvDocument = csv(data, {
  separator: ';',
});
// csv:
//  title;property
//  foo;bar
//  foo_2;bar_2

```

## License
MIT © [Carlos Azaustre](https://carlosazaustre.es)

---
_Source: https://npm.io/package/ceseve · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
