office2json
v0.1.5
Published
pptx, docx, xlsx to and from json
Readme
office2json
pptx, docx, xlsx to and from json
Getting started
npm i office2jsonUsage
platform
- browser
- node
import { readFile, writeFile, template } from 'office2json'
const files = ['test.docx', 'test.xlsx', 'test.pptx']
for (const file of files) {
const json = await readFile(file)
const new_json = template(json, { world: '世界' })
await writeFile(`output-${file}`, new_json)
}