How do i update node version in Glitch?

I currently have node v8.0 and i want to update it to 10 or higher version, how i do that?

Hi @Snowman welcome to the Glitch forums! You can update your node version in the package.json file. You probably have something like this in there:

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

When you changed the “8.x” to “10” (or whatever works for you!) it should automatically rebuild and update. Let me know if I can clarify anything further or you run into any issues!

http://nodeversions.glitch.me/ lists the currently-available versions of Node that Glitch supports. If you select a version that we can’t identify we’ll fall back to the default, which is currently the 10.x branch.