Skip to content
/ npmbox Public
forked from arei/npmbox

Utility for creating (boxing) and using (unboxing) an archive of a complete (including all dependencies) npm install.

License

Notifications You must be signed in to change notification settings

ri8ika/npmbox

 
 

Repository files navigation

npmbox

UPDATE March 10, 2015: v2.3.0 of npmbox is now available with a bug fix for permission problems across multiple operating systems.


Build Status

NPM


npm addon utility for creating and installing from an archive file of an npm install, including dependencies. This lets you create a "box" of an installable package and move it to an offline system that will only install from that box.

npmbox is intended to be a proof of concept with regards to this issue filled against this npm feature request: [Feature] Bundle/Include Dependencies. Ideally, we would like to see the npmbox functionality built into npm so a third party tool like npmbox is not required or necessary. Please go add your support over at that ticket to help get us some visibility... or, even better, go write the code!

Usage of npmbox

Given some package, like express this command will create a archive file of that package and all of its dependencies, such that a npmunbox of that archive file will install express and all of its dependencies.

npmbox - Create an archive for offline installation of the given package.

Usage:

	npmbox --help
	npmbox [options] <package> <package>...

Options:

	-v, -verbose         Shows npm output which is normally hidden.
	-s, -silent          Shows no output whatsoever.

You must specify at least one package.

You can specify more than one package and a separate archive will be created for each specified.

npmbox files end with the .npmbox extension.

Usage of npmunbox

Given some .npmbox file (must end with the .npmbox extension), installs the contents and all of it dependencies.

npmunbox - Extracts a .npmbox file and installs the contained package.

Usage:

	npmunbox --help
	npmunbox [options] <nmpbox-file> <npmbox-file>...

Options:

	-v, -verbose         Shows npm output which is normally hidden.
	-s, -silent          Shows additional output which is normally hidden.
	-g, -global          Installs package globally as if --global was passed to npm.
	-C, -prefix          npm --prefix switch.
	-S, -save            npm --save switch.
	-D, -save-dev        npm --save-dev swtich.
	-O, -save-optional   npm --save-optional swtich.
	-B, -save-bundle     npm --save-bundle swtich.
	-E, -save-exact      npm --save-exact swtich.

You must specify at least one file.

You may specify more than one file, and each will be installed.

Using npmunbox without npmbox being installed

A particular use case with npmunbox comes up fairly often: how do I use npmbox without first installing npmbox. Specifically, many people have asked for a way to run npmunbox as a means to installing npmbox. You can see that this is a bit of a chicken and egg problem. How do we install npmbox from an npmbox file?

Installing npmbox from an .npmbox file

On a system that does have access to the Internet, you need to do the following:

1). If npmbox is not globally installed on your online system, do so now:

npm install -g npmbox

2). In a folder in which you can read/write:

npmbox npmbox

3). Copy the resulting npmbox.npmbox file to you offline system in whatever manner allowed to you, This could involve coping to movable media and transfering that way, however you would do it.

On the system you want to install npmbox to, do the following:

1). Create a new directory

mkdir somedir

2). Change to it:

cd somedir

3). Copy the npmbox.npmbox folder into this directory.

cp /media/usb/npmbox.npmbox .

or

copy E:\npmbox.npmbox .

4). Untar the .npmbox file. This will create the .npmbox-cache folder.

tar -xvfz --no-same-owner --no-same-permissions npmbox.npmbox

If for some reason --no-same-owner or --no-same-permissions do not work, remove them and adjust the permissions/ownership yourself. You will need to ensure that npm can see all the files in the .npmbox.cache file structure.

5). Install npmbox globally using the following command.

npm install --global --cache ./.npmbox.cache --optional --cache-min 99999 npmbox

Once npmbox is installed globally you can use it to install other .npmbox files:

npmunbox blah

TO DO

  • Right now specifying multiple packages creates multiple .npmbox files. Make it create just one .npmbox file by default. Maybe allow a switch (-multi) to make it generate multiple.

About

Utility for creating (boxing) and using (unboxing) an archive of a complete (including all dependencies) npm install.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%