我有一个使用react-react-app创建的react应用程序。
为了编译sass文件,我使用了文档中推荐的node-sass-chokidar。
它在我的本地机器(os x)上安装和工作正常。但是当我将它添加到我的生产服务器(Ubuntu 14.04.5 x32运行nginx)并运行
npm install
字符串
它没有安装。我可以通过检查/node_modules文件夹来看到这一点,在那里它没有显示(就像在我的本地机器上一样)。
Sass安装在服务器上。
当我运行npm install时,我在第一次运行它时得到这个错误
> [email protected] install
/var/www/bertgenerator.com/html/node_modules/fsevents
> node-pre-gyp install --fallback-to-build
node-pre-gyp info it worked if it ends with ok
node-pre-gyp verb cli [ '/usr/bin/nodejs',
node-pre-gyp verb cli '/var/www/bertgenerator.com/html/node_modules/fsevents/node_modules/.bin
node-pre-gyp',
node-pre-gyp verb cli 'install',
node-pre-gyp verb cli '--fallback-to-build' ]
node-pre-gyp info using [email protected]
node-pre-gyp info using [email protected] | linux | ia32
node-pre-gyp verb command install []
node-pre-gyp info check checked for "/var/www/bertgenerator.com/html/node_modules/fsevents/lib/binding/Release/node-v48-linux-ia32/fse.node" (not found)
node-pre-gyp http GET https://fsevents-binaries.s3-us-west-2.amazonaws.com/v1.0.17/fse-v1.0.17-node-v48-linux-ia32.tar.gz
node-pre-gyp http 404 https://fsevents-binaries.s3-us-west-2.amazonaws.com/v1.0.17/fse-v1.0.17-node-v48-linux-ia32.tar.gz
node-pre-gyp ERR! Tried to download(404): https://fsevents-binaries.s3-us-west-2.amazonaws.com/v1.0.17/fse-v1.0.17-node-v48-linux-ia32.tar.gz
node-pre-gyp ERR! Pre-built binaries not found for [email protected] and [email protected] (node-v48 ABI) (falling back to source compile with node-gyp)
node-pre-gyp http 404 status code downloading tarball https://fsevents-binaries.s3-us-west-2.amazonaws.com/v1.0.17/fse-v1.0.17-node-v48-linux-ia32.tar.gz
node-pre-gyp verb command build [ 'rebuild' ]
make: Entering directory `/var/www/bertgenerator.com/html/node_modules/fsevents/build'
SOLINK_MODULE(target) Release/obj.target/.node
COPY Release/.node
make: Leaving directory `/var/www/bertgenerator.com/html/node_modules/fsevents/build'
node-pre-gyp info ok
型
我不知道这是否相关。如果我再次运行npm install,我不会得到错误。
我尝试删除/node_modules文件夹并运行
npm cache clean
型
以及
sudo npm install
型
2条答案
按热度按时间zour9fqk1#
尝试
字符串
这对我很有效,当我的
型
我没有安装chokidar。更多关于npm-chokidar here的信息
u3r8eeie2#
你试过
sudo npm i
吗?其他方法都不管用的时候这对我很管用。
npm i
在某些情况下会默默地失败,因为某些软件包需要管理权限,sudo可以确保这一点。