Node version updating

hey, i’m just wondering if theres any way i could update node to a newer version, since its version 8x now and some packages require version 10x+.

You can add a line in package.json to specify the Node version to use, e.g.

{
  ...
  "engines": { "node": "10.x" },
  ...
}

Reference: https://glitch.com/help/node/

3 Likes

I have a tutorial using nvm How to install node 13+ (Guide)