csv-writer icon indicating copy to clipboard operation
csv-writer copied to clipboard

Convert objects/arrays into a CSV string or write them into a CSV file

Results 33 csv-writer issues
Sort by recently updated
recently updated
newest added

Hi, If would be great if you could release a subset of this package that only included the csvStringifier and removed the dependency on the fs package Thanks Al;

needs more info

Added "browser" section to package.json so that csv-writer continues to work with latest version of React/node/npm

When there is no csv in the directory and setting `append` to `true` the headers don't get added to the top of the file prior to including the data.

It would be great if we could write to stdout or a Buffer, for example. This should be very easy, because `fs.writeFile` already [supports writing to these](https://nodejs.org/api/fs.html#fs_fs_writefile_file_data_options_callback). This already works:...

The documentation advertises that this "respects RFC 4180 for the output CSV format", but as discussed in #27 the RFC specifies CRLF for line separators while this library defaults to...

hi developer team i cannot set encoding: 'SJIS' for createCsvWriter function, please support me !

enhancement

Hi, We are writing a very large csv files and need it to gzipped at runtime rather post writing completion. This feature could be very useful if added. Thanks

Allowing this library to accept field delimiters other than comma (`,`) and semi-colon (`;`) is sometimes requested, and I'm thinking to support this by introducing a new writer class called...

enhancement

For special characters like ÄÖÜ in german language it requires to set a BOM in utf-8 export to have a correct import in programs like MS Excel. Is it possible...

Hi. I'm using csv writer to integrate with a warehouse and they require that all values, including null values, in the csv be double quoted. I set the alwaysQuote option...