How to find reverse dependencies on npm package?

后端 未结 2 1659
温柔的废话
温柔的废话 2020-12-13 03:30

I\'d like to find out which packages depend on express among the installed sails/kraken/loopback/hapi/koa etc. Are there npm sub-comma

2条回答
  •  执笔经年
    2020-12-13 03:53

    I specifically wanted to find what package used a dependency that was breaking an initial install. This may help somebody out trying todo the same:

    find ./node_modules/ -name package.json | xargs grep

提交回复
热议问题