npm-keywordsearch

Get name and description of NPM packages matching a keyword


Keywords
npm, search, keyword, node
License
AGPL-1.0
Install
npm install npm-keywordsearch@0.1.1

Documentation

Fetch list of packages on NPM with specified keyword

This queries the NPM registry with npm-registry-client. It lists all packages matching a keyword using the CouchDB view byKeyword.

Install

npm install --save npm-keywordsearch # yep

Test npm test whatever-keyword

example screenshot

API

var search = require('npm-keywordsearch')

search('my-plugin', function (error, packages) {
  packages.forEach(function (pkg) {
    console.log(pkg.name + ': ' + pkg.description)
  })
})

Based of http://stackoverflow.com/a/13657540/72787.