Attempting to connect my local project testabc123
to myproject
using the usual method:
cd testabc123
npm link
cd ../myproject
npm link testabc123
However, encountering an error message:
npm ERR! code E404
npm ERR! 404 Not Found - GET http://registry.npmjs.org/testabc123 - Not found
npm ERR! 404
npm ERR! 404 'testabc123@*' is not in the npm registry.
npm ERR! 404 You should bug the author to publish it (or use the name yourself!)
Any thoughts on how to resolve this issue? The approach I'm taking to linking local projects is commonly used and typically successful.