Ree*_*ith 2 backend protocol-buffers node.js protobuf.js
我正在使用 protobuf 进行离子项目,并且我已经安装了 protobuf。弓我想安装 pbjs 工具。我在项目目录中使用 npm install pbjs 这样做了。但是当我使用 pbjs 后跟有效参数时,我得到 -bash: command not found 'pbjs'
我究竟做错了什么?
是因为你还没有全局安装pbjs,你可以用
npm install -g pbjs
或者您甚至可以从项目目录访问它,而无需通过执行全局安装它
node_modules/.bin/pbjs <command you want to execute>
因为您已经将它安装在您的项目目录中。