Package Exports
- pptx-parser
- pptx-parser/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pptx-parser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Introduction
a pure in browser library to parse pptx files to json (also provide a vf.js renderer)
Install
npm install pptx-parser
How to use
import parse from 'pptx-parser'
// file is a child element of FileList instance
const pptJson = await parse(file)
console.log(pptJson)