npm不会在我的服务器上安装我的软件包

时间:2015-09-19 19:06:58

标签: node.js ubuntu npm gulp polymer-starter-kit

我在使用Ubuntu 14.04 x64运行的服务器上运行应用程序时遇到问题。我使用聚合物框架开发了一个javascript应用程序,它在我的linux VM上运行良好。

但是,当我将它从我的repo拉到我的服务器并尝试npm install模块时,它不起作用。 npm确实在node_modules/.staging中安装了一些奇怪的文件,但我没有安装我的模块。

节点的我的版本是:

$ node -v v4.1.0

我的 npm 版本是:

$ npm-v 3.3.3

我使用了聚合物入门套件中的package.json文件:https://github.com/PolymerElements/polymer-starter-kit/blob/master/package.json

{
  "private": true,
  "devDependencies": {
    "browser-sync": "^2.7.7",
    "connect-history-api-fallback": "^1.1.0",
    "del": "^1.1.1",
    "glob": "^5.0.6",
    "gulp": "^3.8.5",
    "gulp-autoprefixer": "^2.1.0",
    "gulp-cache": "^0.2.8",
    "gulp-changed": "^1.0.0",
    "gulp-cssmin": "^0.1.7",
    "gulp-if": "^1.2.1",
    "gulp-imagemin": "^2.2.1",
    "gulp-jshint": "^1.6.3",
    "gulp-load-plugins": "^0.10.0",
    "gulp-minify-html": "^1.0.2",
    "gulp-rename": "^1.2.0",
    "gulp-replace": "^0.5.3",
    "gulp-size": "^1.0.0",
    "gulp-uglify": "^1.2.0",
    "gulp-useref": "^1.1.2",
    "gulp-vulcanize": "^6.0.0",
    "jshint-stylish": "^2.0.0",
    "merge-stream": "^0.1.7",
    "polybuild": "^1.0.5",
    "require-dir": "^0.3.0",
    "run-sequence": "^1.0.2",
    "vulcanize": ">= 1.4.2",
    "web-component-tester": "^3.1.3"
  },
  "scripts": {
    "test": "gulp test:local",
    "start": "gulp serve"
  },
  "engines": {
    "node": ">=0.10.0"
  }
}

我尝试只安装devDependencies但它也没有用。

我的服务器托管在Digital Ocean上(我认为这些信息并不相关)。

编辑:我将我的版本降级为2.14.3,现在正确安装了软件包。但是我缺少一系列依赖项:

Error: Cannot find module 'lru-cache'

我安装它:

Error: Cannot find module 'sigmund'

0 个答案:

没有答案