错误!无效版本:“1”

新手上路,请多包涵

问题:

在我的本地机器上执行“节点应用程序”时,一切正常。

但是当我将我的项目部署到 Google App Engine 时,该实例被终止并且我在我的日志中发现以下错误:

 npm ERR! Invalid version: "1"

我看着:

npm:为什么版本“0.1”无效?

错误!无效版本:y

如何解决 npm“错误:无效版本:”0.1“BUG?

我需要纠正的错误是什么?

部署过程开始于 gcloud app deploy --version=deploy

总是以:

 ERROR: (gcloud.app.deploy) Error Response: [4] Timed out waiting for the app infrastructure to become healthy.

这是我的 package.json


代码:

包.json

 {
  "name": "Name",
  "version": "1.0.0",
  "description": "Desc",
  "main": "app.js",
  "engines": {
    "node": "6.9.4",
    "npm": "4.2.0"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node app.js",
    "minify": "html-minifier --input-dir ./viewsCopy --output-dir ./views-minified --collapse-whitespace --html5 --minify-js true"
  },
  "author": "author",
  "license": "copyright",
  "dependencies": {
    "bad-words": "^1.5.1",
    "body-parser": "1.1*.1",
    "connect-flash": "0.1.1",
    "decimal.js": "^9.0.1",
    "ejs": "2.5.5",
    "events": "^1.1.1",
    "express": "4.15.2",
    "express-session": "1.15.2",
    "express-validator": "3.2.0",
    "fast-crc32c": "^1.0.4",
    "firebase": "3.9.0",
    "firebase-admin": "^5.2.1",
    "fs": "0.0.1-security",
    "glob": "7.1.1",
    "helmet": "3.5.0",
    "html-minifier": "^3.5.0",
    "morgan": "1.8.1",
    "multer": "1.3.0",
    "nodemailer": "4.0.0",
    "path": "0.12.7",
    "raven": "^2.0.0",
    "request": "^2.83.0",
    "sanitize-html": "^1.14.1",
    "uglify-js": "^3.0.6"
  }
}

原文由 TheProgrammer 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 310
2 个回答

在 package.json 中,“引擎”属性允许您阻止在不受支持的 CLI 工具版本上运行的 node.js 应用程序。

您可以删除或修改这些值。通过快速查看 gcloud 文档,他们使用的是 node.js (v9.4.0) 的最新稳定版本,它与 npm v5.6.0 捆绑在一起。您可以通过在版本前添加大于字符来允许您的应用程序与现有版本和更高版本一起运行。

 "engines": {
    "node": ">6.9.4",
    "npm": ">4.2.0"
},

原文由 sidhuko 发布,翻译遵循 CC BY-SA 3.0 许可协议

在我的情况下是

"version": "1"

我已经编辑为

"version": "1.0.0"

它修复了。

原文由 Sanya Shvets 发布,翻译遵循 CC BY-SA 4.0 许可协议

推荐问题