https://github.com/pdehaan/npm-depended-upon
Fetch a list of npm modules which depend on a specific module.
https://github.com/pdehaan/npm-depended-upon
Last synced: 3 months ago
JSON representation
Fetch a list of npm modules which depend on a specific module.
- Host: GitHub
- URL: https://github.com/pdehaan/npm-depended-upon
- Owner: pdehaan
- Created: 2016-08-30T21:13:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-30T21:21:28.000Z (almost 9 years ago)
- Last Synced: 2025-04-01T03:36:24.111Z (3 months ago)
- Language: JavaScript
- Homepage: http://npm.im/npm-depended-upon
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# npm-depended-upon
Fetch a list of npm modules which depend on a specific module.
## Installation:
```sh
$ npm i npm-depended-upon -S
```## Usage:
```js
const { dependedUpon } = require('npm-depended-upon');dependedUpon('fs')
.then((modules) => console.log(modules));
```