Socket
Socket
Sign inDemoInstall

pbix

Package Overview
Dependencies
35
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pbix

Read Microsoft Power BI Files with Node.js


Version published
Maintainers
1
Created

Readme

Source

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:

Keywords

FAQs

Last updated on 16 May 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc