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

https://github.com/dhtmlx/excel2table

Convert Excel files to HTML
https://github.com/dhtmlx/excel2table

Last synced: 9 months ago
JSON representation

Convert Excel files to HTML

Awesome Lists containing this project

README

          

Excel2table
-------------

[![npm version](https://badge.fury.io/js/excel2table.svg)](https://badge.fury.io/js/excel2table)

Excel2table is a library that will help you to render an Excel file as an HTML table. It uses https://github.com/dhtmlx/excel2json for Excel parsing.

![result](result.png)

### How to use

```js
import {render} from "excel2table";
render(html_container, data, config);
```
The parameters of the function are the following:

- **html_container** - a CSS locator or an HTML element
- **data** - a file object or a data blob
- **config** - optional, a configuration object { worker, scale }, where
- *worker*: string - an URL for a web worker; CDN is used by default
- *scale*: boolean - defines whether Excel scale is shown
- *sheets*: boolean - defines if sheet selector need to be rendered or not

### License

MIT