Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/xwartz/json-csv-convertor

json2csv && csv2json
https://github.com/xwartz/json-csv-convertor

Last synced: about 2 months ago
JSON representation

json2csv && csv2json

Awesome Lists containing this project

README

        

json-csv-convertor
==================

JSON:
```json
{
"a": "abcd",
"b": "abcd",
"c": "abcd",
"d": "abcd"
}
```

convert

CSV:
```csv
a,abcd
b,abcd
c,abcd
d,abcd
```