Skip to content

usco/usco-3mf-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

usco-3mf-parser

GitHub version

Build Status Dependency Status devDependency Status

Fast and efficient 3mf format parser

  • Optimized for speed (webworkers)
  • And low memory consumption (streams)
  • works in the Node.js & browser

Table of Contents

Install

npm i @usco/3mf-parser

Usage

  import makeParsedStream from '@usco/3mf-parser'

  fs.createReadStream('./someFile.3mf', { encoding: null}) // 'binary'
    .pipe(makeParsedStream())
    .on('data', function (parsed) {
      console.log('parsed', parsed)
      //DO what you want with the data
    })

API

Contribute

See the contribute file!

PRs accepted.

Small note: If editing the Readme, please conform to the standard-readme specification.

Code is written in the standard style.

JavaScript Style Guide

License

MIT © Mark Moissette

About

Fast and efficient 3mf format parser

Resources

License

Stars

Watchers

Forks

Packages

No packages published