Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ad-si/nodeslicer
- Owner: ad-si
- License: mit
- Created: 2015-01-12T18:31:58.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-04-21T09:29:02.000Z (9 months ago)
- Last Synced: 2024-11-29T08:28:33.462Z (about 1 month ago)
- Topics: 3d, 3d-printing, cad, g-code, gcode, prus, prusaslicer, slic3r, slicer, stl
- Language: TypeScript
- Homepage: https://npmjs.com/package/nodeslicer
- Size: 207 KB
- Stars: 10
- Watchers: 5
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```