我在node.js上是新手,所以让我解释一下我要做的事情:
我想安装tail-http https://www.npmjs.com/package/tail-http,并且在此页面中明确说明它已被操作:
tail-http http://example.com/some-file.log
安装节点和npm之后我无法安装它作为新命令使用它,我得到的是:
$ npm init
$ npm install tail-http
$ cd node_modules
$ cd tail-http
$ node index.js http://example.com/some-file.log
虽然有效,但远不是该网上公开的简单用法。
我错过了什么?
答案 0 :(得分:1)
npm install -g tail-http
将全局安装它,您可以随时随地使用它。
答案 1 :(得分:0)
使用-g(全局标志)安装的任何软件包,它告诉npm全局安装并通过文件系统提供。确保以root用户身份登录。大多数情况下它会抛出一个权限被拒绝的错误。或者只是使用 sudo npm install -g tail-http