How to depend on local npm package in meteor package?

As in title, i have local npm package, is there a way to depend on this module in meteor package other than :

Npm.depends({my_npm_module: full/path/to/module});

Depends on what you mean by local?

When Iā€™m working on a npm package at the same time as an app, I use npm link and then you can import / require and use just like any other package

3 Likes