Articles
How many node.js applications can I start in my account?
The maximum number of node.js applications that can be started in the shared environment is 3 per...
How to install node.js in my web hosting account?
node.js can be installed on L2 SSD and L3 SSD subscriptions (these allow SSH access).To install...
How to integrate node.js with Apache?
To access a node.js application from a browser, use the sequence below in an .htaccess file:...
How to start a node.js application?
Option 1 nohup npm start --production & For this variant you need a valid package.json...
How to stop a node.js application?
In order to stop a node.js application, run the command below: pkill node The above command...
What ports can I use for a node.js application?
To run a node.js application you can use a port in the range 60000 - 60500.
