Glitch can you fix this node.js glitch?

I get this error when starting my project "
Welcome to the Glitch console

If you’re following someone else’s instructions make sure you trust them.
If in doubt post a question in our forum https://support.glitch.com

For now, the console and the editor don’t automatically sync. You can
manually run the refresh command and it will force a refresh,
updating the editor with any console-created files.

For more information about this and other technical restrictions,
please see the Help Center: https://help.glitch.com/

Could not find Node null, using Node 10"
so I have to run node index every time to start the project

put an engines.node field in your package.json, this comes from glitch’s nodejs version detector not finding that in your project. as it says though, it’ll still give you node, albeit a quite old version

1 Like

where???

like here:

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

or higher than 10.x as needed

1 Like