https://github.com/harrystevens/sheet2json
A Node.js package for converting each sheet in an .xls or .xlsx file to a .csv file.
https://github.com/harrystevens/sheet2json
Last synced: 18 days ago
JSON representation
A Node.js package for converting each sheet in an .xls or .xlsx file to a .csv file.
- Host: GitHub
- URL: https://github.com/harrystevens/sheet2json
- Owner: HarryStevens
- License: mit
- Created: 2018-02-22T04:59:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-20T16:55:12.000Z (about 2 years ago)
- Last Synced: 2025-04-09T14:08:23.046Z (about 2 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/sheet2json
- Size: 103 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sheet2json
[](https://travis-ci.org/HarryStevens/sheet2json) [](https://coveralls.io/github/HarryStevens/sheet2json?branch=master)A Node.js package for converting each sheet in an .xls or .xlsx file to a .json file.
## Installation
```bash
npm i sheet2json -S
```## Example
```js
require("sheet2json")("path/to/file.xls", response => {
console.log(response);
});
```