1.1.0 • Published 10 years ago

nodescad v1.1.0

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

NodeSCAD

Node.js wrapper for OpenSCAD

Installation

$ npm install nodescad

Usage

var nodescad = require('nodescad'),
	options = {
		binaryPath: '~/Applications/OpenSCAD.app/Contents/MacOS/OpenSCAD'
	    inputFile: 'path/to/file'
	    // For more options check out the configSchema.yaml file
	}


nodeScad.render(options, function (error, result) {
    if (error)
        throw error

    console.log(result.buffer.toString())
})

Styleguide

The code in this repository is formatted as seen in github.com/style-guides/JavaScript/tree/v0.1.1

In order to check whether the code complies to the styleguide, just execute npm run prepublish.

1.1.0

10 years ago

1.0.0

10 years ago

0.4.0

10 years ago

0.3.0

10 years ago

0.2.0

10 years ago