In some cPanel environments where your website is hosted on shared hosting, it can be very difficult to find a way to evaluate JavaScript. In this post, I’ll share a method I discovered that allows you to execute JS on a shared host directly from PHP code.
The command you are looking for is js
.
If you run js -v
in the terminal from cpanel dashboard, you’ll see this output:
1 | $ js -v |
Even if the cPanel admin doesn’t allow you to install Node.js or another JS engine, the js
command is usually available.
The command is very limited—it doesn’t support modern JavaScript syntax. It appears to be based on an older version of JavaScript (likely ES5 or earlier). For example:
- Missing
string.replaceAll()
- No
console.log()
- No support for
async
functions
To work around this, you’ll need to:
- Manually implement missing features.
- Rewrite parts of your code to be compatible.
The biggest challenge is retrieving the output of your JS code. Since console.log()
doesn’t work, I found an unconventional solution: throwing an error with the result.
When you throw an error, it prints to the console, and you can capture it from PHP.
Here’s a working example:
1 | function executeJs($jsCode) { |
This method isn’t perfect, but it’s a useful workaround when you’re restricted to shared hosting.