2016-05-05 61 views
4

不知道發生了什麼,但我有一個通過數字海洋在Ubuntu上運行的盒子,只是克隆了我的git回購。我有一個package.json格式正確(我以前用過)〜20個依賴關係。npm安裝不讀取package.json

當前目錄在哪裏克隆具有chmod777當我

sudo npm install 

它開始安裝軟件包,但node_modules還沒有生成,也不做任何我節點的依賴性得到從我的package.json拉和有在安裝嘗試結束時死亡的日誌

有沒有可以開始調試的地方?我運行最新版本的NPM(3.8.8)和節點5.8

編輯:這裏是故宮的輸出安裝

npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v6.0. Please update to [email protected]^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. 
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v6.0. Please update to [email protected]^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. 
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v6.0. Please update to [email protected]^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. 
npm WARN deprecated [email protected]: [email protected]<3.0.0 is no longer maintained. Upgrade to [email protected]^4.0.0. 
npm WARN deprecated [email protected]: wrench.js is deprecated! You should check out fs-extra (https://github.com/jprichardson/node-fs-extra) for any operations you were using wrench for. Thanks for all the usage over the years. 
npm WARN deprecated [email protected]: this package has been reintegrated into npm and is now out of date with respect to npm 
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v6.0. Please update to [email protected]^4.0.0 as soon as possible. Use 'npm ls graceful-fs' to find it in the tree. 
npm WARN deprecated [email protected]: [email protected]<3.0.0 is no longer maintained. Upgrade to [email protected]^4.0.0. 
npm WARN deprecated [email protected]: Jade has been renamed to pug, please install the latest version of pug instead of jade 
extract:winston → gunzTar ▄ ╢█████████████████████████████████████████████████████████████████████████████████████████████░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░╟ 
Killed 

,這裏是我的package.json

{ 
    "name": "app", 
    "version": "1.0.0", 
    "main": "server.js", 
    "private": true, 
    "scripts": { 
    "test": "echo \"Error: no test specified\" && exit 1", 
    "start": "node ./bin/www" 
    }, 
    "dependencies": { 
    "body-parser": "~1.10.2", 
    "bower": "~1.4.1", 
    "cheerio": "~0.20.0", 
    "connect-mongo": "latest", 
    "cookie-parser": "latest", 
    "express": "latest", 
    "express-session": "latest", 
    "growl": "~1.8.1", 
    "grunt": "~0.4.5", 
    "grunt-bower-task": "~0.4.0", 
    "grunt-contrib-concat": "~1.0.0", 
    "grunt-contrib-copy": "~0.8.0", 
    "grunt-contrib-jshint": "~1.0.0", 
    "grunt-contrib-sass": "~1.0.0", 
    "grunt-contrib-uglify": "~1.0.0", 
    "grunt-contrib-watch": "~0.6.1", 
    "grunt-html2js": "~0.3.2", 
    "grunt-notify": "~0.4.1", 
    "grunt-script-link-tags": "^1.0.2", 
    "log4js": "~0.6.33", 
    "method-override": "~2.0.2", 
    "moment": "^2.12.0", 
    "mongoose": "~4.4.7", 
    "npm": "^3.8.6", 
    "passport": "latest", 
    "passport-openid": "latest", 
    "request": "latest", 
    "socket.io": "~1.4.5", 
    "socket.io-client": "^1.4.5", 
    "time-grunt": "~1.2.1", 
    "winston": "^2.2.0" 
    } 
} 
+0

npm install的輸出是什麼? – Areca

+0

我使用該信息更新了我的操作 – Garuuk

+0

我可能內存不足...... nvm沒有工作 – Garuuk

回答

相關問題