pptx-parser

pure javascript tool to parse pptx file to json in browser

Usage no npm install needed!

<script type="module">
  import pptxParser from 'https://cdn.skypack.dev/pptx-parser';
</script>

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)