Using Locally-Installed CLI Tools In Node Projects

from blog Jim Nielsen’s Blog, | ↗ original
You have a dependency that provides a CLI tool, how do you use it? Even though you did npm i from your project root, if you run it won’t work because that tool is not in your global path. You could install globally, but then if you have in multiple projects and you run in another project it might not be the same version of the tool. For...