node link 踩坑纪录

题目申明:运用npm link 以后。依旧没法在其他处所运用

背景形貌:
想在当地开辟一款cli 东西,运用npm link 以后,一向没法在当地实行,都显现 command not found. 一向以为本身运用的体式格局错了,写了个简朴的helloworld 也没法在当地实行。

  1. npm prefix -g

    Print the local prefix to standard out. This is the closest parent directory to contain a package.json file unless -g is also specified.

    If -g is specified, this will be the value of the global prefix.

  2. $PATH
  3. 看第一步涌现的途径是不是在第二步中
  4. 假如不在的话,将第一步中显现的途径背面增加bin 然后写入$PATH 中。运用以下敕令即可
    vi /etc/paths && source /etc/paths

纪录几个敕令
npm get prefix
npm link https://docs.npmjs.com/cli/link
npm unlink

参考链接
https://stackoverflow.com/que…

https://github.com/npm/npm/is…

    原文作者:小火车
    原文地址: https://segmentfault.com/a/1190000017163927
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞