Skip to content

DeMoorJasper/import-grapher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Generates a dependency tree based on a js entrypoint

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published