Specific Node version for project
// create .npmrc file on root of the project with following content.
engine-strict=true
// add following field in package.json
"engines": {
"node": ">=12"
},
// it will show error if "npm install" with npm -v not match.