gpt4 book ai didi

node.js - openshift node.js 项目的 npm 安装错误

转载 作者:搜寻专家 更新时间:2023-10-31 23:48:37 26 4
gpt4 key购买 nike

在 browserify 4.0.0 上部署具有依赖项的 OpenShift node.js 项目时,安装 browserify 的依赖项时出现错误。具体来说:

...
remote: npm ERR! Error: No compatible version found: stream-browserify@'^1.0.0'
remote: npm ERR! Valid install targets:
remote: npm ERR! ["0.0.0","0.0.1","0.0.2","0.0.3","0.0.4","0.1.0","0.1.1","0.1.2","0.1.3","1.0.0"]
...

鉴于根据 browserify 的依赖关系,stream-browserify 的版本是 ^1.0.0,并且 openshift 暗示 1.0.0 是一个有效的安装目标,为什么会失败?我在其他情况下看到过此错误,只要可用的最高 openshift 版本适合关心的 package.json 版本。

我是不是误解了插入符号的意思?这是 OpenShift 错误吗?

我的 package.json:

{
"name": "SampleApp",
"version": "1.0.0",
"description": "do things online",
"keywords": [
"OpenShift",
"Node.js",
"application",
"openshift"
],
"author": {
"name": "J",
"email": "j@email.com",
"url": ""
},
"homepage": "http://www.openshift.com/",
"repository": {
"type": "git",
"url": "https://github.com/openshift/origin-server"
},
"engines": {
"node": "0.x",
"npm": "1.x"
},
"dependencies": {
"body-parser": "1.x",
"browserify": "4.0.0",
"cookie-parser": "1.x",
"cookie-session": "1.x",
"express": "4.x",
"fast-csv": "0.x",
"multer": "0.0.5",
"pg": "3.x",
"sql": "0.x",
"xlsx-extract": "0.0.4"
},
"devDependencies": {
},
"bundleDependencies": [],
"private": true,
"main": "server.js",
"scripts": {
"build-js": "browserify public/index.js -o public/index-bundle.js & browserify public/intake.js -o public/intake-bundle.js",
"start": "npm run build-js && node server.js"
}
}

最佳答案

此行为可能是由于本地计算机和 openshift 环境上的 Node 和 npm 版本不同。首先修复 package.json 中的“engines”属性,如下所示:

"engines": {
"node": ">= 0.10",
"npm": ">= 1.4"
}

如果问题仍然存在(在 openshift 上),那是因为 openshift 环境中没有所需的 nodejs/npm 版本。例如,截至今天,在我的本地机器上我可能正在使用 Node 版本 0.10.28 和 npm 版本 1.4.9,但是在 openshift nodejs 默认卡带上我必须满足于 nodejs 版本 0.10.5 和 npm 版本 1.2.17 , 这是一个很大的差距。

因此,在这种情况下,最简单的解决方法是使用“npm shrinkwrap”,它会卡住应该使用的嵌套依赖版本,从而消除 npm 版本的各种行为来找出嵌套依赖安装。

可以在这里阅读有关收缩包装的信息:https://www.npmjs.org/doc/cli/npm-shrinkwrap.html

因此,在您的本地计算机上:

  1. 运行 npm install 并确保一切正常。
  2. 启动 npm shrinkwrap 这将创建一个文件 - “npm-shrinkwrap.json”,其中包含所需的 shrinkwrap 信息。添加、提交文件并将其推送到 openshift git 存储库。

关于node.js - openshift node.js 项目的 npm 安装错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23635570/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com