All Projects → doowb → module-dependents

doowb / module-dependents

Licence: MIT license
Get the list of npm modules that depend on the specified npm module.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to module-dependents

Detective
Find all calls to require() no matter how deeply nested using a proper walk of the AST
Stars: ✭ 387 (+2480%)
Mutual labels:  modules, dependencies
lint-deps
Lint for unused or missing dependencies in your node.js projects. Customize with plugins or configuration.
Stars: ✭ 48 (+220%)
Mutual labels:  modules, dependencies
Go Modiff
Command line tool for diffing go module dependency changes between versions 📔
Stars: ✭ 24 (+60%)
Mutual labels:  modules, dependencies
Advanced Nodejs
For help, ask in #questions at slack.jscomplete.com
Stars: ✭ 273 (+1720%)
Mutual labels:  modules, streams
Framer Modules
Discover, install and save your favorite modules at one place
Stars: ✭ 338 (+2153.33%)
Mutual labels:  registry, modules
Login Action
GitHub Action to login against a Docker registry
Stars: ✭ 149 (+893.33%)
Mutual labels:  registry
Datbase
[DEPRECATED] Open data sharing powered by Dat
Stars: ✭ 251 (+1573.33%)
Mutual labels:  registry
Ktra
Your Little Cargo Registry
Stars: ✭ 147 (+880%)
Mutual labels:  registry
Verdaccio
📦🔐 A lightweight Node.js private proxy registry
Stars: ✭ 12,667 (+84346.67%)
Mutual labels:  registry
quickjs es runtime
this is a wrapper library for the javascript runtime quickjs written in rust which works with modules, promises, async, await and much more
Stars: ✭ 43 (+186.67%)
Mutual labels:  modules
bandmaster
Simple and easily extendable Go library for managing runtime services & dependencies (datastores, APIs, MQs, custom...).
Stars: ✭ 43 (+186.67%)
Mutual labels:  dependencies
Citizen
A Private Terraform Module Registry
Stars: ✭ 230 (+1433.33%)
Mutual labels:  registry
Beachball
The Sunniest Semantic Version Bumper
Stars: ✭ 158 (+953.33%)
Mutual labels:  registry
Alexandrie
An alternative crate registry, implemented in Rust.
Stars: ✭ 251 (+1573.33%)
Mutual labels:  registry
Windows hardening
Windows Hardening settings and configurations
Stars: ✭ 148 (+886.67%)
Mutual labels:  registry
yavdb
Yet Another Vulnerability Database
Stars: ✭ 14 (-6.67%)
Mutual labels:  dependencies
Hub Tool
🧪 Docker Hub experimental CLI tool
Stars: ✭ 147 (+880%)
Mutual labels:  registry
Harbor
An open source trusted cloud native registry project that stores, signs, and scans content.
Stars: ✭ 16,320 (+108700%)
Mutual labels:  registry
redis-registry
Service registry and discovery for Node.js on top of Redis
Stars: ✭ 26 (+73.33%)
Mutual labels:  registry
Registry
npm registry documentation
Stars: ✭ 202 (+1246.67%)
Mutual labels:  registry

module-dependents NPM version NPM monthly downloads NPM total downloads Linux Build Status Windows Build Status

Get the list of npm modules that depend on any other npm module.

Install

Install with npm:

$ npm install --save module-dependents

Install with yarn:

$ yarn add module-dependents

Usage

var moduleDependents = require('module-dependents');

API

moduleDependents

Get the list of npm modules that depend on any other npm module.

Params

  • name {String}: Name of module to retrieve dependents for.
  • options {Object}: Options to pass along to npm-api-dependents
  • options.raw {Function}: Optionally specify to get a raw object with a name property for each dependent.
  • returns {Stream}: Returns an object stream with each object being an instance of Repo from the npm-api module.

Example

// returns a stream
moduleDependents('micromatch')
  .on('data', function(dependent) {
    console.log(dependent.name);
  });

About

Related projects

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Brian Woodward

License

Copyright © 2017, Brian Woodward. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on December 27, 2017.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].