nodeslicer
v0.3.0
Published
Wrapper for PrusaSlicer
Maintainers
Readme
NodeSlicer
Wrapper for the PrusaSlicer CLI plus additional configuration parameters.
Installation
npm install nodeslicerUsage
import { render } from "nodeslicer"
const options = {
inputFile: 'path/to/file.stl'
// For more options check out the configSchema.yaml file
}
const gcode = render(options)
console.log(gcode)