• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Question How to install Puppeteer in AlmaLinux?

Azurel

Silver Pleskian
Server operating system version
AlmaLinux 8.10
Plesk version and microupdate number
18.0.65
I want add a NodeJS script in folder /home/puppet/ with module puppeteer. So I tried install:
/opt/plesk/node/23/bin/node /opt/plesk/node/23/bin/npm install puppeteer
and get this error:
# /opt/plesk/node/23/bin/node /opt/plesk/node/23/bin/npm install puppeteer
(node:2232535) ExperimentalWarning: CommonJS module /opt/plesk/node/23/lib/node_modules/npm/node_modules/debug/src/node.js is loading ES Module /opt/plesk/node/23/lib/node_modules/npm/node_modules/supports-color/index.js using require().
Support for loading ES Module in require() is an experimental feature and might change at any time
(Use `node --trace-warnings ...` to show where the warning was created)
npm error code 1
npm error path /home/puppet/node_modules/puppeteer
npm error command failed
npm error command sh -c node install.mjs
npm error /home/puppet/node_modules/puppeteer/install.mjs:34
npm error const {downloadBrowsers} = await importInstaller();
npm error ^^^^^
npm error
npm error SyntaxError: await is only valid in async function
...

I think, because its use "sh -c node install.mjs" and not "sh -c /opt/plesk/node/23/bin/node install.mjs"? How do I solve this? Thanks :)
 
The use of export PATH="/opt/plesk/node/23/bin:$PATH" has helped here.
added 108 packages, and audited 109 packages in 8s

10 packages are looking for funding
run `npm fund` for details

found 0 vulnerabilities

I tried first export NODE_PATH="/opt/plesk/node/23/bin/node", but that was not the right way. ;)
 
Back
Top