https://github.com/slaveofcode/example-file-writestream
Example File Writestream for Excel, CSV and Plain Text
https://github.com/slaveofcode/example-file-writestream
Last synced: 3 months ago
JSON representation
Example File Writestream for Excel, CSV and Plain Text
- Host: GitHub
- URL: https://github.com/slaveofcode/example-file-writestream
- Owner: slaveofcode
- License: mit
- Created: 2022-12-08T11:22:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-09T01:53:40.000Z (almost 3 years ago)
- Last Synced: 2025-03-30T08:33:02.831Z (8 months ago)
- Language: TypeScript
- Size: 370 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File WriteStream
## Getting started
This project is a prove of concept for writing large datasets with a different types of files using streaming methods. Currently only these cases are covered:
- XLSX (Excel file)
- CSV
- Text (Plain Text)

## Setup
Clone this project to your local machine, and do the installation via:
> npm install
## Running The Example
In Typescript Version via `ts-node`
> npm start
In JS Version
> npm run build
> npm run start:js
## File Result
After running some example, check generated file at `files` directory according to the file type you've been choosing before (e.g. `.xlsx`, `.csv`, `.txt`).