Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sail-sail/xlsx-img
- Owner: sail-sail
- Created: 2019-05-28T10:13:30.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-08T16:38:31.000Z (7 months ago)
- Last Synced: 2024-10-04T13:11:52.099Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 73.2 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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);
})();
```