2017-04-16 04:32:13 +00:00
|
|
|
### Streaming Write
|
|
|
|
|
2017-04-16 07:31:21 +00:00
|
|
|
The streaming write functions are available in the `XLSX.stream` object. They
|
|
|
|
take the same arguments as the normal write functions but return a readable
|
|
|
|
stream. They are only exposed in node.
|
2017-04-16 04:32:13 +00:00
|
|
|
|
2017-04-16 07:31:21 +00:00
|
|
|
- `XLSX.stream.to_csv` is the streaming version of `XLSX.utils.sheet_to_csv`.
|
2017-05-16 17:45:35 +00:00
|
|
|
- `XLSX.stream.to_html` is the streaming version of `XLSX.utils.sheet_to_html`.
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>nodejs convert to CSV and write file</b> (click to show)</summary>
|
|
|
|
|
|
|
|
```js
|
|
|
|
var output_file_name = "out.csv";
|
|
|
|
var stream = XLSX.stream.to_csv(worksheet);
|
|
|
|
stream.pipe(fs.createWriteStream(output_file_name));
|
|
|
|
```
|
|
|
|
|
|
|
|
</details>
|
2017-04-16 07:31:21 +00:00
|
|
|
|
|
|
|
<https://github.com/sheetjs/sheetaki> pipes write streams to nodejs response.
|
2017-04-30 20:37:53 +00:00
|
|
|
|