2016-11-21 157 views
0

我正在爲我的web應用使用heroku。最近幾天,我做了一些改動,做了很少的提交,並推送到github回購站,但不是爲了heroku。NodeJS Heroku部署錯誤

這是否會造成任何問題?今天,我試圖推動我的應用程序heroku和吐出錯誤信息,但我很難明白什麼是真正的問題。

以下是錯誤信息,我從Heroku的

-----> Node.js app detected 
-----> Creating runtime environment 

    NPM_CONFIG_LOGLEVEL=error 
    NPM_CONFIG_PRODUCTION=true 
    NODE_ENV=production 
    NODE_MODULES_CACHE=true 
-----> Installing binaries 
    engines.node (package.json): unspecified 
    engines.npm (package.json): unspecified (use default) 

    Resolving node version (latest stable) via semver.io... 
    Downloading and installing node 5.11.1... 
    Using default npm version: 3.8.6 
-----> Restoring cache 
    Loading 2 from cacheDirectories (default): 
    - node_modules (exists - skipping) 
    - bower_components (not cached - skipping) 
-----> Building dependencies 
    Prebuild detected (node_modules already exists) 
    Rebuilding any native modules 

    > [email protected] install /tmp/build_beaf0bc7e95fb8f9c62b3c6e646e1f10/node_modules/ionic/node_modules/ionic-app-lib/node_modules/glob-watcher/node_modules/chokidar/node_modules/fsevents 
    > node-pre-gyp install --fallback-to-build 

    module.js:341 
    throw err; 
^

    Error: Cannot find module 'npmlog' 
    at Function.Module._resolveFilename (module.js:339:15) 
    at Function.Module._load (module.js:290:25) 
    at Module.require (module.js:367:17) 
    at require (internal/module.js:20:19) 
    at Object.<anonymous> (/tmp/build_beaf0bc7e95fb8f9c62b3c6e646e1f10/node_modules/ionic/node_modules/ionic-app-lib/node_modules/glob-watcher/node_modules/chokidar/node_modules/fsevents/node_modules/node-pre-gyp/lib/node-pre-gyp.js:15:11) 
    at Module._compile (module.js:413:34) 
    at Object.Module._extensions..js (module.js:422:10) 
    at Module.load (module.js:357:32) 
    at Function.Module._load (module.js:314:12) 
    at Module.require (module.js:367:17) 

    npm ERR! Linux 3.13.0-100-generic 
    npm ERR! argv "/tmp/build_beaf0bc7e95fb8f9c62b3c6e646e1f10/.heroku/node/bin/node" "/tmp/build_beaf0bc7e95fb8f9c62b3c6e646e1f10/.heroku/node/bin/npm" "rebuild" 
    npm ERR! node v5.11.1 
    npm ERR! npm v3.8.6 
    npm ERR! code ELIFECYCLE 
    npm ERR! [email protected] install: `node-pre-gyp install --fallback-to-build` 
    npm ERR! Exit status 1 
    npm ERR! 
    npm ERR! Failed at the [email protected] install script 'node-pre-gyp install --fallback-to-build'. 
    npm ERR! Make sure you have the latest version of node.js and npm installed. 
    npm ERR! If you do, this is most likely a problem with the fsevents package, 
    npm ERR! not with npm itself. 
    npm ERR! Tell the author that this fails on your system: 
    npm ERR!  node-pre-gyp install --fallback-to-build 
    npm ERR! You can get information on how to open an issue for this project with: 
    npm ERR!  npm bugs fsevents 
    npm ERR! Or if that isn't available, you can get their info via: 
    npm ERR!  npm owner ls fsevents 
    npm ERR! There is likely additional logging output above. 

    npm ERR! Please include the following file with any support request: 
    npm ERR!  /tmp/build_beaf0bc7e95fb8f9c62b3c6e646e1f10/npm-debug.log 
-----> Build failed 

    We're sorry this build is failing! You can troubleshoot common issues here: 
    https://devcenter.heroku.com/articles/troubleshooting-node-deploys 

    Some possible problems: 

    - node_modules checked into source control 
    https://blog.heroku.com/node-habits-2016#9-only-git-the-important-bits 

    - Node version not specified in package.json 
    https://devcenter.heroku.com/articles/nodejs-support#specifying-a-node-js-version 

    - A module may be missing from 'dependencies' in package.json 
    https://devcenter.heroku.com/articles/troubleshooting-node-deploys#ensure-you-aren-t-relying-on-untracked-dependencies 

    - This module may be specified in 'devDependencies' instead of 'dependencies' 
    https://devcenter.heroku.com/articles/nodejs-support#devdependencies 

    Love, 
    Heroku 

了!推送被拒絕,無法編譯Node.js應用程序。 !推送失敗

回答

0

我得到了一個解決方案。

從字面上看,錯誤消息是由於缺少fsevents而創建的。我發現fsevents是隻能在Mac OS上安裝和運行的模塊。雖然我的筆記本電腦和heroku服務器不是Mac。

該問題剛剛創建,因爲我們正在使用github和我的同事一起開發項目。我使用Ubuntu,他使用Mac。他試圖在他的筆記本電腦上安裝離子,而離子安裝則帶有離子。

畢竟,我卸載離子,我可以成功地將我的項目部署到heroku。

下面的鏈接幫我弄清楚了。如果你想檢查它,請參考它。 https://github.com/linnovate/mean/issues/411