I would run strapi.io on devilbox. This needed NodeJS 14.x.x, but Devilbox give me only version 16.x.x
How can I use the previous version of nodejs?
To degrade the node.js
version, you can simply define the engine you want to use in the package.json
of your project.
Example:
"engines": {
"node": "14.x"
},