0.0.0 • Published 11 years ago

test-npm-install v0.0.0

Weekly downloads
18
License
-
Repository
-
Last release
11 years ago

TEST-NPM-INSTALL

This module is here simply to aid in the testing of the npm install command when used inside modules.

How to use

npm install

require("child_process").exec("npm install test-npm-install", function(err){
	if(err){
		throw err;
	}
	else{
		require("test-npm-install");
	}
});

npm install

require("child_process").exec("npm install https://github.com/mcwhittemore/test-npm-install/tarball/master", function(err){
	if(err){
		throw err;
	}
	else{
		require("test-npm-install");
	}
});

npm install

require("child_process").exec("npm install ./path/to/test-npm-install", function(err){
	if(err){
		throw err;
	}
	else{
		require("test-npm-install");
	}
});