1

最近、dashDB モジュールのアップグレード用の「ibm_db」はありましたか? bluemix の node.js と ibm_db モジュールを使用して、dashDB にアクセスしています。モジュールは問題なく動作しましたが、現在 10.5.2016 では、モジュールは Bluemix でコンパイルされなくなりました。使用しているバージョンは、package.json で ibm_db ^0.0.15 として定義されています。以下は、Bluemix ビルド エラー ログの例です。

----->Building dependencies
   Prebuild detected (node_modules already exists)
   Rebuilding any native modules
   > ibm_db@0.0.15 install /tmp/staged/app/node_modules/ibm_db
   > node installer/driverInstall.js
   module.js:327
   throw err;
   ^
   Error: Cannot find module 'fstream'
   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 download_file_httpget (/tmp/staged/app/node_modules/ibm_db/installer/driverInstall.js:25:19)
   at Object.<anonymous> (/tmp/staged/app/node_modules/ibm_db/installer/driverInstall.js:340:1)
   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)
   npm ERR! Linux 3.19.0-25-generic
   npm ERR! argv "/tmp/staged/app/vendor/node/bin/node" "/tmp/staged/app/vendor/node/bin/npm" "rebuild"
   npm ERR! node v4.4.3
   npm ERR! npm  v2.15.1
   npm ERR! code ELIFECYCLE
   npm ERR! ibm_db@0.0.15 install: `node installer/driverInstall.js`
   npm ERR! Exit status 1
   npm ERR!
   npm ERR! Failed at the ibm_db@0.0.15 install script 'node installer/driverInstall.js'.
   npm ERR! This is most likely a problem with the ibm_db package,
   npm ERR! not with npm itself.
   npm ERR! Tell the author that this fails on your system:
   npm ERR!     node installer/driverInstall.js
   npm ERR! You can get information on how to open an issue for this project with:
   npm ERR!     npm bugs ibm_db
   npm ERR! Or if that isn't available, you can get their info via:
   npm ERR!
   npm ERR!     npm owner ls ibm_db
   npm ERR! There is likely additional logging output above.
   npm ERR! Please include the following file with any support request:
   npm ERR!     /tmp/staged/app/npm-debug.log
-----> Build failed
4

1 に答える 1

0

ibm_db 0.0.18Node.js で使用するには、 に更新する必要があります4.x

ログごとに Node.js を使用している4.4.3ため、package.jsonファイルは次のようになります。

{
        "name": "NodejsStarterApp",
        "version": "0.0.1",
        "private": true,
        "scripts": {
                "start": "node app.js"
        },
        "dependencies": {
                "express": "4.13.x",
                "cfenv": "1.0.x",
                "ibm_db": "0.0.18"
        },
        "repository": {},
        "engines": {
                "node": "4.x"
        }
}
于 2016-05-10T12:18:21.493 に答える