Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created February 2, 2013 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isaacs/4695951 to your computer and use it in GitHub Desktop.
Save isaacs/4695951 to your computer and use it in GitHub Desktop.
$ npm ls
npm WARN package.json {{example}}@0.1.0 No README.md file found!
{{example}}@0.1.0 /Users/isaacs/dev/js/x
├── UNMET DEPENDENCY glob
└── UNMET DEPENDENCY sax
npm ERR! missing: glob@, required by {{example}}@0.1.0
npm ERR! missing: sax@, required by {{example}}@0.1.0
npm ERR! not ok code 0
$ npm install
npm WARN package.json {{example}}@0.1.0 No README.md file found!
npm http GET https://registry.npmjs.org/glob
npm http GET https://registry.npmjs.org/sax
npm http 200 https://registry.npmjs.org/sax
npm http 200 https://registry.npmjs.org/glob
npm http GET https://registry.npmjs.org/inherits
npm http GET https://registry.npmjs.org/minimatch
npm http GET https://registry.npmjs.org/graceful-fs
npm http 200 https://registry.npmjs.org/inherits
npm http 200 https://registry.npmjs.org/graceful-fs
npm http 200 https://registry.npmjs.org/minimatch
npm http GET https://registry.npmjs.org/lru-cache
npm http GET https://registry.npmjs.org/sigmund
npm http 200 https://registry.npmjs.org/sigmund
npm http 200 https://registry.npmjs.org/lru-cache
sax@0.5.1 node_modules/sax
glob@3.1.17 node_modules/glob
├── inherits@1.0.0
├── graceful-fs@1.1.14
└── minimatch@0.2.9 (sigmund@1.0.0, lru-cache@2.0.4)
$ rm -rf node_modules/glob
$ npm install
npm WARN package.json {{example}}@0.1.0 No README.md file found!
npm http GET https://registry.npmjs.org/glob
npm http 304 https://registry.npmjs.org/glob
npm http GET https://registry.npmjs.org/graceful-fs
npm http GET https://registry.npmjs.org/inherits
npm http GET https://registry.npmjs.org/minimatch
npm http 304 https://registry.npmjs.org/graceful-fs
npm http 304 https://registry.npmjs.org/inherits
npm http 304 https://registry.npmjs.org/minimatch
npm http GET https://registry.npmjs.org/lru-cache
npm http GET https://registry.npmjs.org/sigmund
npm http 304 https://registry.npmjs.org/sigmund
npm http 304 https://registry.npmjs.org/lru-cache
glob@3.1.17 node_modules/glob
├── inherits@1.0.0
├── graceful-fs@1.1.14
└── minimatch@0.2.9 (sigmund@1.0.0, lru-cache@2.0.4)
$ rm -rf node_modules/sax
$ npm install
npm WARN package.json {{example}}@0.1.0 No README.md file found!
npm http GET https://registry.npmjs.org/sax
npm http 304 https://registry.npmjs.org/sax
sax@0.5.1 node_modules/sax
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment