convert dxf file into json format


License
MIT
Install
npm install dxftojson@0.1.12

Documentation

dxftojson

NPM version NPM downloads Build status

convert dxf file into json format

Getting started

install package

const dxftojson = require('dxftojson');

dxftojson('./sample/file2.dxf' , 'out.json')
.then(result=>{
    return result;  
})