30 results for “node js”
How to Choose and Change Your Node.js Version in cPanel
In cPanel you choose your Node.js version per application in the "Setup Node.js App" tool — and…
Node.jsHow to Install npm Packages for a Node.js App in cPanel
On cPanel shared hosting you install your Node.js app's npm packages either with the one-click…
Node.jsHow to Set Up a Node.js Application on Webuzo
Setting up a Node.js app on Webuzo means installing a Node.js version from the panel, uploading…
Node.jsHow to Install and Manage Node.js Versions on Webuzo
Webuzo lets you install one or more Node.js versions from its panel and select the one your…
Node.jsHow to Set up Node.js Application in cPanel
In this tutorial, you will learn how to easily set up Node.js applications from the cPanel graphical…
Node.jsHow to Deploy a Node.js App with PM2 in cPanel
Running a Node.js application on cPanel hosting is very doable, but it helps to know how cPanel…
Node.jsHow to Host a React Front-End with a Node.js Backend on cPanel
The clean way to host a React front-end with a Node.js backend on cPanel is to…
Node.jsHow to Route a Node.js App to a Subdomain in cPanel
To run your Node.js app on a subdomain like app.yourdomain.com, you create the subdomain in…
Node.jsHow to Set Environment Variables for a Node.js App in cPanel
cPanel lets you set environment variables for your Node.js app directly in the Setup Node.js App…
Node.jsHow to Deploy a Next.js App on cPanel Shared Hosting
You can deploy a Next.js app on cPanel by building it and running its Node server through…
Node.jsHow to Restart a Node.js App in cPanel (and Why touch tmp/restart.txt Works)
You restart a Node.js app in cPanel either with the Restart button in Setup Node.js App…
Node.jsHow to Deploy a Node.js App from GitHub Using cPanel’s Git Tool
cPanel's Git Version Control tool lets you clone your Node.js app straight from GitHub into your…
Node.jsHow to Deploy an Express.js App on cPanel Shared Hosting
Deploying an Express app on cPanel means uploading your files, creating the app in Setup Node.js App…
Node.jsHow to Deploy a Node.js Application with Docker on a VPS
Docker packages your Node.js app together with its exact Node version and dependencies into a container that…
Node.jsHow to Fix the Node.js error: “Cannot GET” URL
Sometimes when using Node.js for your application(s) you may receive an error about the app being…
Node.jsHow to Set the Startup File and Application Root in cPanel Node.js
Two settings decide whether your Node.js app starts at all in cPanel: the application root (where your…
Node.jsHow to Keep a Node.js App Running on Webuzo with PM2
PM2 keeps your Node.js app running on Webuzo after you disconnect from SSH, restarts it automatically if…
Malware Removal & Site CleanupHow to Clean a Hacked Ghost (Node.js) Blog
Ghost is a modern Node.js publishing platform, so cleaning a compromised Ghost blog differs a little from…
Node.jsUnderstanding the Node.js Event Loop: Phases, Microtasks, and Blocking Explained
The event loop is what lets single-threaded Node.js handle thousands of connections at once: instead of…
Malware Removal & Site CleanupHow to Remove Malware from a Hacked Next.js or Node.js App
Node.js and Next.js apps are compromised through the same doors as any web application — vulnerable dependencies…
Node.jsHow to Fix Node.js Port and 502 Errors in cPanel
When a Node.js app on cPanel returns a 502 error or complains about a port, the cause…
Node.jsHow to Serve Static Files from a Node.js App on cPanel
You can serve static files (images, CSS, JavaScript) from your Node.js app using Express's static middleware…
Node.jsHow to Use Worker Threads for CPU-Intensive Tasks in Node.js
Worker threads let Node.js run CPU-intensive work on separate threads, so a heavy calculation no longer…
Node.jsHow to Debug Node.js with the Inspector and Chrome DevTools
Node.js has a built-in inspector that connects to Chrome DevTools, giving you real breakpoints, step-through…
Node.jsNode.js Security Best Practices for Production Applications
Securing a production Node.js app comes down to a handful of disciplines applied consistently: trustworthy dependencies, validated…
Node.jsHow to Run Node.js in Production with PM2: Clustering and Zero-Downtime Reloads
PM2 is a process manager that keeps your Node.js app running, restarts it if it crashes, scales…
Node.jsHow to Set Up Nginx as a Reverse Proxy for a Node.js App
A reverse proxy puts Nginx in front of your Node.js app, so visitors hit Nginx on the…
Node.jsHow to Scale Node.js Across CPU Cores with the Cluster Module
By default a Node.js process runs on a single CPU core, so on a multi-core server…
Node.jsWhat Is Phusion Passenger and How Does cPanel Run Node.js?
Phusion Passenger is the application server cPanel uses to run your Node.js app — it starts your app…
Node.jsHow to Run a Node.js App as a systemd Service on Linux
Running your Node.js app as a systemd service makes Linux itself keep it alive — starting it on…