Socket
Book a DemoInstallSign in
Socket

node-modules

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-modules

commandline tool and node module for node-modules.com

latest
Source
npmnpm
Version
1.0.1
Version published
Weekly downloads
1.8K
2.33%
Maintainers
2
Weekly downloads
 
Created
Source

node-modules-cli

Node.js module and cli tool for searching node-modules.com

npm install -g node-modules

Usage

After installation you can search for node modules through the terminal by doing

node-modules search my query

This will spawn a less instance will the search result nicely formatted. You can also personalize your results by ranking modules by authors you follow or star on github by running

node-modules personalize

If your github account could not be auto detected, use -u to specify it, e.g.:

node-modules personalize -u mafintosh

For more information run node-modules help

Module

You can also use it from within your node application

var search = require('node-modules');
var stream = search('test framework', {username:'mafintosh'});

stream.on('data', function(result) {
	console.log(result);
});

stream.on('end', function() {
	console.log('no more results');
});

License

MIT

Keywords

node-modules.com

FAQs

Package last updated on 22 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts