Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ad-si/nodeslicer

Wrapper for PrusaSlicer
https://github.com/ad-si/nodeslicer

3d 3d-printing cad g-code gcode prus prusaslicer slic3r slicer stl

Last synced: 27 days ago
JSON representation

Wrapper for PrusaSlicer

Awesome Lists containing this project

README

        

# NodeSlicer

Wrapper for the PrusaSlicer CLI plus additional configuration parameters.

## Installation

```shell
npm install nodeslicer
```

## Usage

```ts
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)
```