Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 15 days 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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-30T21:21:28.000Z (over 8 years ago)
- Last Synced: 2024-12-14T02:04:10.489Z (20 days ago)
- Language: JavaScript
- Homepage: http://npm.im/npm-depended-upon
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- 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));
```