Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么我无法运行 js-beautify?即使我安装了它,它似乎也不起作用。
http://pastie.org/8022125
您在本地安装了模块,这意味着它安装在./node_modules.
./node_modules
CLI 脚本将安装在 中./node_modules/.bin,因此您可以像这样运行它们:
./node_modules/.bin
./node_modules/.bin/js-beautify
但是,对于安装脚本的模块,更常见的是全局安装模块,这意味着它将安装在脚本最终位于(可能)在您的目录中的位置$PATH:
$PATH
[sudo] npm install js-beautify -g