Set default Node.js version for Angular project
23:37 02 Oct 2022

I am working with an older Angular project that will not run with the latest Node.js version. So when I do other projects I have to set my current Node.js version to the latest one and when I run my Angular project I have to set it to a older one. I would like to have some configuration in the Angular project that automatically sets the Node.js version to a specific version when you do ng serve and run the project.

How to achieve this?

node.js angular angular-cli