0.0.2 • Published 3 years ago

pbix v0.0.2

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

pbix

Read Microsoft Power BI Files (*.pbix) with Node.js

:warning: WIP

Be aware, this is work in progress, and I do not know how this package will end up. So use with caution

How-to Use

const PBIX = require('pbix')
const fpath = 'my-dataset.pbix';

// no options atm, but will be of type `object`
const options = {};
const pbix = new PBIX(options);
pbix.readFile(fpath).then(data => {
  const layout = data.layout;
  console.log(layout);
});

To Do

... a lot :sweat_smile: