0.0.1 • Published 9 years ago

dependents-tree v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

dependents-tree

Figure out dependents tree for a given NPM package

Usage

command line:

dependents-tree <package-name>

as a submodule:

    var findDependents = require('dependents-tree');
    findDependenents('bittorrent-dht', function(err, tree) {
        
	})

Result example:

{
	"itty-bitty-torrent": {},
	"torrent-discovery": {
		"webtorrent": {
			"torrnode": {}
		}
	},
	"torrent-stream": {
		"nw-updater": {},
		"os-torrent-hash": {},
		"peerflix": {
			"castnow": {},
			"cinebeam": {},
			"ezflix": {},
			"morrent": {},
			"peercast": {},
			"torrentcast": {}
		},
		"peerflix-headless": {},
		"peerflix-server": {},
		"peermaps": {},
		"peerwiki": {},
		"tget": {},
		"torrent": {},
		"torrent-blob-store": {},
		"torrent-mount": {},
		"wnp": {}
	},
	"webtorrent": {
		"torrnode": {}
	}
}