cancel
Showing results for 
Search instead for 
Did you mean: 

node js version update in business application studio

Priyanka97
Explorer

Hi,

I'm getting an error as: you are using unsupported version of Node.js in business application studio.

anyone knows commands for this to update.

Thank You,

Priyanka

xstava
Explorer
0 Kudos

i have same problem

Accepted Solutions (0)

Answers (2)

Answers (2)

marius_greeff
Active Participant

Hi Priyanka,

I ran 'npm install -g node' in the terminal view. That solved the node.js version error. I now have a new issue.

Kind regards, Marius

marius_greeff
Active Participant
0 Kudos

My end solution was creating a new workspace and importing my projects.

0 Kudos

Hi,

you need to update NodeJS Version on Your Business Application Studio.

For this you can do on your terminal :

  • Step 1 :

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash

==>After that you need to close the terminal and to open new one :

  • Step 2 :

npm config delete prefix

nvm install node <version> ( you can use nvm install node to get the latest one )

node -v : to check the installed version

Thanks

Priyanka97
Explorer

Hi Abdelaziz,

I followed the same procedure as you have mentioned, current node version in my project is 19.6.0

but now I'm getting different error as,

Failed to load resource: the server responded with a status of 502 ()
VM150:182 crbug/1173575, non-JS module files deprecated.


It would be very helpful if you have any idea about this.

Thanks

0 Kudos

Hello Priyanka ,

restart your dev space after that you will get the same issue of Node JS after that :

  • nvm use --delete-prefix v<version>
  • nvm install node <version> ( use version as requested on the error message for exp for me i'm using now 16.18.0)

Thanks