https://github.com/stefanbuck/npm-list
Requests a list of npm packages
https://github.com/stefanbuck/npm-list
Last synced: 3 months ago
JSON representation
Requests a list of npm packages
- Host: GitHub
- URL: https://github.com/stefanbuck/npm-list
- Owner: stefanbuck
- Created: 2014-07-27T15:18:39.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-08-19T07:08:37.000Z (almost 11 years ago)
- Last Synced: 2025-02-17T07:03:19.146Z (3 months ago)
- Language: JavaScript
- Size: 145 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# npm-list
[![NPM version][npm-image]][npm-url] [![Dependency Status][daviddm-url]][daviddm-image]> Requests a list of npm packages with [json-requester](https://github.com/stefanbuck/json-requester)
## Install
```bash
$ npm install --save npm-list
```## Usage
```javascript
var npmList = require('npm-list');var options = {
filter: ['name', 'description']
};
npmList(options, function(err, data) {
if (err) {
throw err;
}console.log(data);
});```
## License
Copyright (c) 2014 Stefan Buck. Licensed under the MIT license.
[npm-url]: https://npmjs.org/package/npm-list
[npm-image]: https://badge.fury.io/js/npm-list.svg
[daviddm-url]: https://david-dm.org/stefanbuck/npm-list.svg?theme=shields.io
[daviddm-image]: https://david-dm.org/stefanbuck/npm-list