-
`Uncaught TypeError: xfs.mkdir is not a function index.js?0191:27`
I'm using it as per the docs
```
writeFile('Report.csv', csv, function(err) {
if (err) throw err;
});
``…
-
Package Version: 4.3.5
Node Version: 10.15.0 (Windows 10 and Ubuntu 18.04 running in WSL)
I created a command line tool to generate fake randomized person/address data and output to a CSV. Excel i…
-
-
Hello. I'm using json2csv v4.1.2 as js module for node.js v10.0.0. Can I make headers as column?
**Now:**
| Car | Color |
| Audi | Red |
| Mazda | White |
…
-
This isn't a big deal since I can achieve the same result by suppressing the header field from the output and writing it myself, it would be nice if there were a configuration option to map a custom n…
-
This is more of a question rather than issue. Is it possible to create multiple csv file while using stream api?
For Example: I i have 200M rows and i want to divide the data into multiple csv each c…
-
```
C:\Users\CYL\git\scancode-toolkit>bin\python.exe etc\scripts\json2csv.py C:\Users\CYL\Downloads\activation-1.1-info_identified.json C:\Users\CYL\Downloads\activation-1.1-info_identified.csv
```
…
-
Thanks for your work on json2csv.
I'm using node 8.11.3, json2csv 4.2.1
I have a large number of JSON objects with several arrays. A subset of one of my records, for example,
```{javascript}
{
…
-
Hi,
I have same data like below
```
const data = [
{name: 'ABC', title: 'title 1', description: {type: 'abc', count: 3, message: 'message 1'}},
{name: 'PQR', title: 'title 1', descri…
-
Let assume the simple code
`const json2csvParser = new Json2csvParser({
['first', 'second', 'third'],
delimiter: "\t",
header: true
});`
Previously (4.2.1) the ordering…