Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

ifc-convert

klokoy241MIT1.2.0

Simple wrapper for ifcConvert

ifc, converter, collada

readme

Ifc converter for Node.js

A simple promised based wrapper for the IfcConvert program for node.

Requirements

  • IfcConvert, Installation instructions and binaries can be found at the ifcOpenShell page.

Usage

var ifcConvert = require('ifc-convert');

ifcConvert('source.ifc', 'dest.dae')
    .then(function() {
        //Now you have a Collada file;)
    });

ifcConvert('source.ifc', 'dest.obj')
    .then(function() {
        //Now you have a Wavefront OBJ file with an .mtl file
    });

ifcConvert('source.ifc', 'dest.stp')
    .then(function() {
        //Now you have a STEP file
    });

ifcConvert('source.ifc', 'dest.igs')
    .then(function() {
        //Now you have a IGES file
    });

Options

If you do not have IfcConvert in your path you can give it in options.

ifcConvert('source.ifc', 'dest.dae', {path: 'path/to/bin'})
    .then(function() {
        //Done
    });