• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue How to upgrade Node.js from 17.9.1 to 18.17.0

lzelko

New Pleskian
Server operating system version
Windows 10 Enterprise
Plesk version and microupdate number
pariah.cirrushosting.com
Hello, I am trying to upload a website developed using react. The dependencies I need to run the project require Node.js version 18.17.0. Is there any way for me to update this Node.js version to work with my website? I have no experience with any Linux coding.
 
Alright, so you want to upgrade Node.js from 17.9.1 to 18.17.0 for your React website. Don't worry, even if you're not familiar with Linux coding, it's pretty straightforward with a tool called NVM (Node Version Manager). Here's how I'd do it: Install NVM: First, you need to install NVM. You can do this by opening your terminal and running this command: bash curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash After installing, you might need to restart your terminal or run this command to get NVM working: bash export NVM_DIR=""$([ -z ""${XDG_CONFIG_HOME-}"" ] && printf %s ""${HOME}/.nvm"" || printf %s ""${XDG_CONFIG_HOME}/nvm"")"" [ -s ""$NVM_DIR/nvm.sh"" ] && \. ""$NVM_DIR/nvm.sh"" Install Node.js 18.17.0: Now that NVM is set up, you can install Node.js version 18.17.0 with this command: bash nvm install 18.17.0 Switch to Node.js 18.17.0: To start using the new version, run: bash nvm use 18.17.0 Check the Version: To make sure everything worked, you can check the Node.js version with: bash node -v It should say v18.17.0. And that's it! You should now have the right version of Node.js for your website.
 
Back
Top