私の前のquestionに従うと、node.jsにプロトコルバッファを使用しようとしています。私は私のServiceMessage.proto
からServiceMessage_pb.js
を生成し、次のコードを追加しました:エラー:モジュール 'google-protobuf'を見つけることができません
var messages = require('./ServiceMessage_pb');
今、私は私のノードのログに次のエラーを取得しています:
Error: Cannot find module 'google-protobuf'
at Function.Module._resolveFilename (module.js:325:15)
at Function.Module._load (module.js:276:25)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> (/home/aii/ws/ServiceMessage_pb.js:8:12)
at Module._compile (module.js:409:26)
at Object.Module._extensions..js (module.js:416:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
任意の提案を、これを解決する方法?あなたがNPMとモジュールをインストールすることができ
おかげ
'npm.org'は' google-という名前の任意のモジュールが表示されませんprotobuf'。おそらく、移動されたり、名前が変更されたり、別の場所に公開されたりしています。 –
@SD https://www.npmjs.com/package/protobuf **これはhttp://code.google.com/p/protobuf-for-node/**のフォーク – Luke
が必要です特別にgoogle-protobufが必要なServiceMessage_pb.jsの8行目のステートメント。実際のモジュールはprotobufですが、このファイルのジェネレータはgoogle-protobufを使用しているようです。 –