Created
May 31, 2011 07:59
-
-
Save isaacs/1000127 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Option 1 | |
// This is how it's actually done. | |
// | |
var config = {} // the equivalent of command-line switches | |
, path = require("path") | |
require("npm").load(config, function (er, npm) { | |
if (er) return doWhateverItIsYouDoWithErrors(er) | |
// thingThatCanBeInstalled can be like: | |
// "name" | |
// "name", "version" | |
// "http://x.y/package.tgz" | |
// "/path/to/folder" | |
// "/path/to/package.tgz" | |
npm.commands.cache.add(thingThatCanBeInstalled, function (er, data) { | |
if (er) return doWhateverItIsYouDoWithErrors(er) | |
// Now it's sitting in the cache, just as it will be when its installed. | |
// the data object is what npm sees from the package.json file. | |
// this is how npm does publishes, installs, etc. Anything that interacts | |
// with package contents goes through the cache. It's a single gateway | |
// for cleanup, validation, etc. | |
var theCodeIsIn = path.resolve(npm.cache, data.name, data.version, "package") | |
, theTarballIs = path.resolve(npm.cache, data.name, data.version, "package.tgz") | |
, theDataIs = path.resolve(npm.cache, data.name, data.version, "package.json") | |
// Use it for good! | |
}) | |
}) | |
// | |
// Option 2 | |
// | |
// You could just do this, if you don't want to go through so much trouble. | |
// I often do this to quickly see what's inside a tarball on the registry. | |
// | |
// $ npm view express dist.tarball | xargs curl | tar ztv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Right. That's exactly the issue I was bumping into and my work-arounds were brittle.