0.2.11 • Published 5 years ago

node-slic3r v0.2.11

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Node.js Slic3r

Node.js wrapper for the Slic3r-cli plus additional configuration parameters.

Installation

$ npm install node-slic3r

Usage

var nodeSlicer = require('node-slic3r');

var options = {
        inputFile: 'path/to/file'
        // For more options check out the configSchema.yaml file
    };


nodeSlicer.render(options, function (error, bufferData) {
    if (error)
        console.error(error.message)
    else
        console.log(bufferData.toString('utf8'))
})
0.2.11

5 years ago

0.2.10

5 years ago

0.2.9

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago