Some of the packages required a similar node and NPM version in order to work. There'll be an issue for some packages when the version in use between the 2 developers is not similar. What you can do to tackle this?
- To replicate whether the package is compatible with your node version is by run npm i on your shell.
- If its throws npm error, you can proceed with the following methods.
- Install the same version of node or npm. On the shell, npm -v and node -v to check version respectively.
- If you refuse to install the same version, you can try yarn.Install it and run yarn (=== npm i) on your shell to install dependencies.