Hey Im looking for a good and solid solution for how to install node + vuejs full stack web program in offline. Our customer can not have any internet access so we have to install it in offline but cant imagine how to do. First idea was copy all the code including node modules and just paste it to the customer’s computer and run it. However I do bot believe this is gonna work.
Customer uses Centos as fas as I know.
Thanks in advance.
Anyone who's looking for a 'how to' steps for offline centOS install.
Preparation
a laptop or Computer can access to the internet.
Install VM or whatever you want to use to set the whole project in CentOS
Install CentOS7 in your VM and connect to the internet.
!! Important!!
You MUST Follow your customer's centOS install options. There are many options you can select when you install your centOS. When you install your project in offline, you have to have all the packages(or dependencies) depends on OS installed options. If your customer installed CentOS as full development package, then you don't have to have additional dependencies. if not, you need a lot.
download all the packages you need as CentOS version. In my case, my web is based on 'Nodejs + Express', 'Vuejs + AntDesign', pm2, nginx so I have donwnloaded nodejs, nginx, and pm2. Others are gonna work without any problems once you've installed Nodejs. If you need some additional packages or dependencies(it will be written in the terminal message during installation process of node or others) then write down all the packages and install them.
Set your project in CentOS and test if it works(build the project if it's needed). If it does not work, check the path, dependencies, or anything else might be related(DO NOT FORGET LINUX AUTHORITY!!).
If everything works, then get all the installation file(.rpm) you've installed.
install another CentOS in VM as OFFLINE
install in offline CentOS .rpm installation files you get from online CentOS above.(no. 6) (DO Exactly same installation but this time, with only the files. not from the online repositories)
Test
If it's not working, check the path, root or user's authority in CentOS.
About PM2.
As PM2 is for the process management, you have to install it globally. However, sometimes(I tested 2 times in exactly same set environments. First try did work but second try didn't work. Couldn't find why. I've tested 4.3 and it works every time so I suggest you to get the pm2 version under 4.5) pm2 v.4.5 or up does not support offline installation with npm so All you have to do in online centos:
npm pack pm2(whatever you've set the name when you installed pm2 in online centos, if you didn't change the package name then npm pack pm2 will work, command path doesn't matter. pm2 is installed globally so when you run npm pack pm2 anywhere it will take global installed pm2 whatsoever) This will pack all the dependencies to install pm2 in offline. Take this packed file(.tgz) and install this in offline.
Test
If it's not working and you couldn't find the reason why, leave a comment or answers down below. I will try to help as much as I can.(I'm Korean and live in Korea. Please be aware of time difference)
I am going to deploy Typescript(React) app on the Dreamhost.
But I don't know how to do that.
I can connect by SSH to the server.
Should I install npm by SSH then run that?
I saw an option about passenger on the Dreamhost server.
If I select this check box, then message shows requires VPS or dedicated server running a recent OS version.
But I don't know at all about how to do this. I have been using Dreamhost for only few months.
Please help me.
What requires a VPS or Dedicated server, is the RVM module:
Regarding your question: Node.js is not installed by default on newer DreamHost servers. You must manually install a custom version under your server's username.
Once installed, npm is also installed and you'll be able to run the commands below.
View the following article for instructions on how to install a custom version of Node.js.
Installing a custom version of NVM and Node.js
please how can I install NodeJS on my operating system. I have tried downloading it from their official website but it doesnt run due to the requirement.
Is there another way to get it installed?
As the title says, I'm trying to install npm, node etc. on a shared plan which doesn't have SSH, running Apache.
Is that possible in any way?
Thanks.
I need to install Node.js on machine without Internet access. I want to do that by downloading node.js package, move it to machine without Internet access and then install it on that machine.
Is it possible?