lms-inspector
v1.2.2
Published
Extract metadata from an LMS archive
Downloads
4
Readme
lms-inspector
A library for extracting metadata from an LMS archive.
Example: https://github.com/calebissharp/lms-inspector-example
Getting Started
Clone this repository
git clone https://github.com/calebissharp/lms-inspector.git
Install dependencies
yarn
Watch for changes and build
yarn dev
Build
yarn build
Run tests
yarn test
Run tests in watch mode
yarn test:watch
Usage
npm install lms-inspector
const LMSInspector = require('lms-inspector');
const file = new File(['hello world'], 'file.zip');
LMSInspector.inspect(file)
.then(info => { /* Do stuff */ });