An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# sheet2json
[![Build Status](https://travis-ci.org/HarryStevens/sheet2json.svg?branch=master)](https://travis-ci.org/HarryStevens/sheet2json) [![Coverage Status](https://coveralls.io/repos/github/HarryStevens/sheet2json/badge.svg?branch=master)](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);
});
```