Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sail-sail/xlsx-img

node-xlsx suport parse image
https://github.com/sail-sail/xlsx-img

Last synced: 21 days ago
JSON representation

node-xlsx suport parse image

Awesome Lists containing this project

README

        

### xlsx-img
like [node-xlsx](https://github.com/mgcrea/node-xlsx) and suport parse image
```typescript
npm install --save xlsx-img
```
```typescript
import { readFile } from "fs-extra";
import { parseXlsx } from "xlsx-img";

(async () => {
const buffer = await readFile(`${__dirname}/test/test.xlsx`);
const data = await parseXlsx(buffer);
console.log(data);
})();
```