Установка Inotify с помощью NPM - PullRequest
1 голос
/ 04 марта 2012

Я довольно новичок в nodeJS и пытаюсь установить пакет с именем inotify, используя Node Package Manager (NPM).

После установки NPM (на OSX Lion) я попытался установить inotify с помощью команды:

sudo npm install inotify

И я получаю следующую ошибку:

npm http GET https://registry.npmjs.org/inotify
npm http 304 https://registry.npmjs.org/inotify

> inotify@0.2.2 install /usr/local/lib/node_modules/inotify
> node-waf configure build

Checking for program g++ or c++          : /usr/bin/g++ 
Checking for program cpp                 : /usr/bin/cpp 
Checking for program ar                  : /usr/bin/ar 
Checking for program ranlib              : /usr/bin/ranlib 
Checking for g++                         : ok  
Checking for node path                   : not found 
Checking for node prefix                 : ok /usr/local/Cellar/node/0.6.6 
Checking for program node                : /usr/local/bin/node 
Checking for function inotify_init       : not found 
/usr/local/lib/node_modules/inotify/src/wscript:11: error: the configuration failed (see '/usr/local/lib/node_modules/inotify/build/config.log')
npm ERR! error installing inotify@0.2.2

npm ERR! inotify@0.2.2 install: `node-waf configure build`
npm ERR! `sh "-c" "node-waf configure build"` failed with 1
npm ERR! 
npm ERR! Failed at the inotify@0.2.2 install script.
npm ERR! This is most likely a problem with the inotify package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node-waf configure build
npm ERR! You can get their info via:
npm ERR!     npm owner ls inotify
npm ERR! There is likely additional logging output above.
npm ERR! 
npm ERR! System Darwin 11.2.0
npm ERR! command "node" "/usr/local/bin/npm" "install" "-g" "inotify"
npm ERR! cwd /Users/username/code
npm ERR! node -v v0.6.6
npm ERR! npm -v 1.1.4
npm ERR! code ELIFECYCLE
npm ERR! message inotify@0.2.2 install: `node-waf configure build`
npm ERR! message `sh "-c" "node-waf configure build"` failed with 1
npm ERR! errno {}
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /Users/username/code/npm-debug.log
npm not ok

Может ли кто-нибудь помочь мне с этим

1 Ответ

4 голосов
/ 04 марта 2012

Модуль inotify не будет собран, потому что не может найти inotify_init.Это связано с тем, что inotify недоступно в OS X.

API FSEvents в OS X предоставляет аналогичную функциональность, но это совершенно другой API.Модуль inotify не будет работать в этой ситуации.

В зависимости от того, что вы пытаетесь сделать, fs.watch может удовлетворить ваши потребности.Он устраняет различия платформы:

  • В системах Linux это использует inotify.
  • В системах BSD (включая OS X) это использует kqueue.
  • В системах SunOS (включая Solaris и SmartOS) используются порты событий.
  • В системах Windows эта функция зависит от ReadDirectoryChangesW.
.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...