I have a node js project running in node v6.12.0 and I need to update the project to node v12.18.
These are some of the dependencies tagged to the project in package.json:
{
"hapi": "^8.8.0"
"joi": "^6.4.1"
"mocha": "^2.4.5"
"ioredis": "^2.4.0"
}
Wondering what all steps should I do for making this upgrade possible!
Will there be a break in code functionalities if I upgrade to node v12? Is it backward compatible to node v6? Does all those Promise.then(function()) still would work in node v12?