# xlsx-img **Repository Path**: ccteams/xlsx-img ## Basic Information - **Project Name**: xlsx-img - **Description**: node-xlsx suport parse image - **Primary Language**: TypeScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 3 - **Forks**: 1 - **Created**: 2019-05-28 - **Last Updated**: 2022-02-09 ## Categories & Tags **Categories**: excel-utils **Tags**: None ## 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); })(); ```