I am trying to use different NPM-packages (steam, cheerio, … ) in a package:
Npm.depends({
"steam": "0.6.7",
"dota2": "0.6.2",
...
});
But when I start meteor I always get this:
npm ERR! protobuf@0.11.0 install: `node-gyp rebuild`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the protobuf@0.11.0 install script 'node-gyp rebuild'.
npm ERR! This is most likely a problem with the protobuf package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node-gyp rebuild
npm ERR! You can get their info via:
npm ERR! npm owner ls protobuf
npm ERR! There is likely additional logging output above.
The same occurs if I am using meteorhacks:npm
to add the packages directly to my application.
Does someone has an idea how to solve this?