import-grapher

1.0.2 • Public • Published

Import Grapher

Uses Parcel in the background to generate an asset graph

Install

npm install import-grapher

CLI

Generates a import-graph.json file in the current working directory.

importgrapher <entrypoint>

Options

  • --no-cache, disables the caching mechanism
  • --out-file <filename>, sets the output filename

API

You can also use Import Grapher as a Node.js API

const importGrapher = require('import-grapher');
const path = require('path');
 
async function getGraph() {
  // graph = a JSON Object containing the asset import tree
  let graph = await importGrapher(path.join(__dirname, './index.js'));
 
  // do something with the graph...
}
 
getGraph();

License

MIT

/import-grapher/

    Package Sidebar

    Install

    npm i import-grapher

    Weekly Downloads

    0

    Version

    1.0.2

    License

    MIT

    Unpacked Size

    184 kB

    Total Files

    7

    Last publish

    Collaborators

    • jasperdm