I am trying to test a branch of a local module in a separate project.
Normally, I npm link
the local module to my dev environment. The module link is always on the master. I'd like to have separate branches and npm link
a specific branch of the module in a separate project.
I tried using some syntax in this post such as npm link modlue#nameOfBranch
I know you can install a specific git branch from GitHub based on the npm
docs. But ideally, I would like to work on the modules branch, make updates, then have those changes instantly reflected via the npm link
in my working project.