Home > Back-end >  How can i change the Node.js version in CDK
How can i change the Node.js version in CDK

Time:10-29

Warning error I keep getting this error/warning when running any CDK command.

I tried changing the node version in NPM. But it didn't have any effect on CDK.

CodePudding user response:

I used NVM in order to install and set to the correct version:

nvm install 18.12.0

nvm use 18.12.0

  • Related