Navju Cloud hosting comes with Composer (for PHP) and Node.js + npm. Needed for modern PHP frameworks (Laravel, Symfony) and frontend builds.
\n
Composer — installing PHP dependencies
\n
Connect via SSH (see the dedicated article), go to the project folder:
\n
cd ~/public_html/\ncomposer install
\n
If you use Laravel, after composer install run:
\n
php artisan key:generate\nphp artisan migrate\nphp artisan storage:link
\n
Node.js — setup via cPanel
\n
- cPanel → Software → Setup Node.js App
- Click Create Application
- Pick the Node.js version (LTS recommended — 20.x)
- Application mode: Production
- Application root: path to project, e.g.
node_app - Application URL: domain or subdomain
- Application startup file:
index.jsorapp.js - Create
\n
Installing npm dependencies
\n
In the Node.js section press Run NPM Install or via SSH:
\n
cd ~/node_app\nnpm install\nnpm run build
\n
Running
\n
The Node.js app starts automatically. Restart — the Restart button in cPanel.
