
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
npm-remote-ls
Advanced tools
Examine a package's dependency graph before you install it.
npm install npm-remote-ls -g
npm-remote-ls sha@1.2.4
└─ sha@1.2.4
├─ readable-stream@1.0.27-1
│ ├─ isarray@0.0.1
│ ├─ string_decoder@0.10.25
│ ├─ inherits@2.0.1
│ └─ core-util-is@1.0.1
└─ graceful-fs@3.0.2
There are various command line flags you can toggle for npm-remote-ls, for
details run:
npm-remote-ls --help
Return dependency graph for latest version:
var ls = require('npm-remote-ls').ls;
ls('grunt', 'latest', function(obj) {
console.log(obj);
});
Return dependency graph for specific version:
var ls = require('npm-remote-ls').ls;
ls('grunt', '0.1.0', function(obj) {
console.log(obj);
});
Return a flattened list of dependencies:
var ls = require('npm-remote-ls').ls;
ls('grunt', '0.1.0', true, function(obj) {
console.log(obj);
});
Configure to only return production dependencies:
var ls = require('npm-remote-ls').ls
var config = require('npm-remote-ls').config
config({
development: false,
optional: false
})
ls('yargs', 'latest', true, function (obj) {
console.log(obj)
})
ISC
FAQs
Examine a package's dependency graph before you install it
The npm package npm-remote-ls receives a total of 1,097 weekly downloads. As such, npm-remote-ls popularity was classified as popular.
We found that npm-remote-ls demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.