get-dep-tree

Use npm's Arborist to get a dependency tree for a package.

Usage no npm install needed!

<script type="module">
  import getDepTree from 'https://cdn.skypack.dev/get-dep-tree';
</script>

README

get-dep-tree Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

Use npm's Arborist to get a dependency tree for a package.

Example

const getDepTree = require('get-dep-tree');
const { Node } = require('@npmcli/arborist');
const assert = require('assert');

getDepTree().then((tree) => {
    assert.ok(tree instanceof Node);
});