# jcsv

> Simple node module for converting a json array [ {}, {} ] to CSV

Latest version **0.0.4** (published 2017-05-26) · 0 weekly downloads

## Install

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

Provides the command `jcsv`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2017-05-26 |
| First published | 2013-07-01 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.6.2 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Cian Clarke |
| Maintainers | cianclarke |

## Links

- npm: https://www.npmjs.com/package/jcsv
- Repository: https://github.com/cianclarke/json2csv
- Homepage: http://github.com/cianclarke/json2csv
- Issues: https://github.com/cianclarke/json2csv/issues
- npm.io page: https://npm.io/package/jcsv

## Recent versions

- 0.0.4 (latest) — 2017-05-26
- 0.0.3 — 2014-05-16
- 0.0.2 — 2014-05-16
- 0.0.1 — 2013-07-01

## README

jcsv
===

Simple node module for converting a json array [ {}, {} ] to CSV.


Usage (as a module)
===================

    var jcsv = require ('jcsv');
    var data = [
                  {
                    "a" : 1,
                    "b" : 2
                  },
                  {
                    "a" : 3,
                    "b" : 4,
                    "c" : 5
                  }
    ];

    jcsv(data, { separator : ',', newline : ";\n", headers : true }, function(err, csv){
      console.log(csv);
    });

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