How can I change version of node?

How can I change latest version of node to an older version, for example v10.15?

1 Like

You can install using the toolbox command. The Toolbox is a tool that offers a familiar RPM based environment for developing and debugging software that runs fully unprivileged using Podman. I recommend reading the toolbox command documentation using the command toolbox --help or github.com/debarshiray/toolbox/tree/master/doc

Create a new toolbox container using the command:

toolbox create --release f33

To run the toolbox use the command:

toolbox enter --release f33

To install Node.js use the command:
https://developer.fedoraproject.org/tech/languages/nodejs/nodejs.html

Hi @Goran_Petrovic. I think the easiest way to have multiple node versions is with nvm https://github.com/nvm-sh/nvm

Just make sure to remove your current node first.

Tnx. This should help a lot.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.