Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 363 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 363 Bytes

NodeSlicer

Wrapper for the PrusaSlicer CLI plus additional configuration parameters.

Installation

npm install nodeslicer

Usage

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)