Skip to content

ermin-muratovic/node-slic3r

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'))
})

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published