I have a local npm package included in my repo (I do not include all node_modules in my repo due to its size of more than 200 MB, only a specific package that I had to modify to suit my needs).
In package.json , the local package declaration is as follows:
dependencies : { local_package: "./my_local_package" ... }
the error i got
npm ERR! enoent ENOENT: no such file or directory, open '/app/tmp/cache/my_local_package'
I'm not sure that /app/tmp/cache is where my repo is located, and if that is not what I should change it.
node v4.2.1, npm v2.14.7
source share