Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/takamin/csv-downloader
Helper to download a CSV file with HTML5 browser and save
https://github.com/takamin/csv-downloader
Last synced: about 1 month ago
JSON representation
Helper to download a CSV file with HTML5 browser and save
- Host: GitHub
- URL: https://github.com/takamin/csv-downloader
- Owner: takamin
- Created: 2019-11-23T09:07:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T16:37:18.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T06:22:56.167Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 946 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
csv-downloader
==============A helper for a HTML5 web app to download a CSV file and save.
Currently, following splitting feature does not work.
Do not download large CSV file that is larger than about 400 MB.
Browser might crash.~~A huge CSV file will be split to several files.~~
~~The byte size of the splitted each chunk is able to be specified.~~
~~This feature is needed by a limitation of a Blob object MAX size.~~
~~It is said that the MAX size of a Blob object is about 500 MB.~~## USAGE
```javascript
const CsvDownloader = require("csv-downloader");const url = "https://path-to-the-csv";
const outputFilename = "filename-for-the-downloaded.csv";
const chunkSize = //A threshold byte size to split the csv by the line
480 * 1024 * 1024;CsvDownloader.download(url, outputFilename, chunkSize);
```## INSTALLATION
Use npm to install
```bash
$ npm install --save csv-downloader
```