First of all it's not a duplicate question of below:-
How to install npm -g on offline server
https://stackoverflow.com/questions/40976100/how-to-installl-pm2-on-offline-server
I install npmbox (https://github.com/arei/npmbox) on my offline REHL server but I'm still do not know how to install pm2 or any other package using that.
Please advise.
You use npm install & pack
First on a machine that is online you install
Then you pack it up
That gives you a tar file -- you copy that tar file to your offline machine and install, like
The above however only create a tarball for the specific module expluding dependencies, and you may still have dependencies that you need to resolve. While you could simply walk through and pack every dependency manually, there is a modules that will automated that for you
Then you can do
for the individual packages, or if you have a
package.json
for your projectto pack everything in one big tarball