0.0.1-a • Published 4 years ago

npmsearchplugin v0.0.1-a

Weekly downloads
-
License
ISC
Repository
github
Last release
4 years ago

Basic Usage

var { search } = require('npmsearchplugin');

search('express', function (err, modules) {
  console.log('Here are 20 modules', modules);
  // modules is an array of objects like:
  // {
  //   name: 'modulename',
  //   version: '1.0.0'
  //   author: 'some author'
  //   description: 'the description'
  // }
});


search('express', {limit: 50} function (err, modules) {
  console.log('Here are 50 modules', modules);
});