我有一个Node.js项目,需要Node版本12或更高。有没有办法在包中指定这个。Json文件,以便安装程序自动检查并通知用户是否需要升级?
当前回答
在package.json中添加以下内容:
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0"
},
将以下内容添加到.npmrc(与package.json相同目录):
engine-strict=true
其他回答
还有另一种更简单的方法:
npm安装Node@8(将Node 8保存为package.json中的依赖项) 您的应用程序将使用Node 8为任何人运行-甚至Yarn用户!
这是因为node只是一个包,它将node作为它的包二进制文件发布。它只是包含node_module/.bin,这意味着它只使node对包脚本可用。不是主外壳。
查看Twitter上的讨论:https://twitter.com/housecor/status/962347301456015360
您可以在包中设置engines字段。为节点或NPM版本或两者设置要求:
"engines" : {
"npm" : ">=8.0.0 <9.0.0",
"node" : ">=16.0.0 <17.0.0"
}
为了通过npm强制执行这个命令,你需要创建一个.npmrc文件(并将其提交到存储库中),并将engines-strict选项设置为true,这将导致npm命令(如npm install)在所需的引擎版本不匹配时失败:
# .npmrc
engine-strict=true
如果没有这个文件,每个开发人员都需要在他们的本地工作空间中运行npm config set engine-strict true来开启这个选项。
原来的答案
正如你说的,你的代码肯定不能在任何低版本下工作,你可能也需要"engineStrict"标志:
{ "engineStrict" : true }
包的文档。Json文件可以在NPMJS网站上找到
更新
engineStrict现在已弃用,所以这只会给出一个警告。现在轮到用户执行npm config set engine-strict true,如果他们想要这个。
更新2
正如ben在下面指出的,在你的项目的根目录下创建一个.npmrc文件(与你的包在同一级别)。如果Node版本不兼容,使用text engine-strict=true将在安装过程中强制报错。
一个Mocha测试用例示例:
describe('Check version of node', function () {
it('Should test version assert', async function () {
var version = process.version;
var check = parseFloat(version.substr(1,version.length)) > 12.0;
console.log("version: "+version);
console.log("check: " +check);
assert.equal(check, true);
});});
在package.json中添加以下内容:
"engines": {
"npm": ">=8.0.0 <9.0.0",
"node": ">=16.0.0 <17.0.0"
},
将以下内容添加到.npmrc(与package.json相同目录):
engine-strict=true
以下是我完整的现成脚本,基于亚当的回答。
check-version.js:
/* eslint-disable no-console */
const fs = require('fs');
const semver = require('semver');
const childProcess = require('child_process');
// checks that current node and npm versions satisfies requirements in package.json
// to run manually: node check-version.js [verbose]
const VERBOSE_FORCED = false;
const args = process.argv.slice(2);
const VERBOSE = VERBOSE_FORCED || (args.length > 0 && args[0] === 'verbose');
const printErrAndExit = (x) => {
console.error(x);
console.error('Aborting');
process.exit(1);
};
const checkNpmVersion = (npmVersionRequired) => {
if (!npmVersionRequired) {
console.log('No required npm version specified');
return;
}
const npmVersion = `${childProcess.execSync('npm -v')}`.trim();
if (VERBOSE) console.log(`npm required: '${npmVersionRequired}' - current: '${npmVersion}'`);
if (!semver.satisfies(npmVersion, npmVersionRequired)) {
printErrAndExit(`Required npm version '${npmVersionRequired}' not satisfied. Current: '${npmVersion}'.`);
}
};
const checkNodeVersion = (nodeVersionRequired) => {
if (!nodeVersionRequired) {
console.log('No required node version specified');
return;
}
const nodeVersion = process.version;
if (VERBOSE) console.log(`node required: '${nodeVersionRequired}' - current: '${nodeVersion}'`);
if (!semver.satisfies(nodeVersion, nodeVersionRequired)) {
printErrAndExit(`Required node version '${nodeVersionRequired}' not satisfied. Current: '${nodeVersion}'.`);
}
};
const json = JSON.parse(fs.readFileSync('./package.json'));
if (!json.engines) printErrAndExit('no engines entry in package json?');
checkNodeVersion(json.engines.node);
checkNpmVersion(json.engines.npm);
它应该放在根项目目录中。
它检查包中指定的节点和/或npm版本。Json(引擎条目),例如
"engines": {
"node": ">=16.0.0 <17.0.0",
"npm": ">=8.0.0 <9.0.0"
},
您可以手动调用它
Node check-version.js [verbose]
或者将其作为脚本包含在package json中,无论是作为独立脚本还是作为其他脚本的先决条件,例如
"scripts" : {
"start": "node check-version.js && vite",
"build": "node check-version.js && vite build",
"lint": "node check-version.js && eslint .",
"check-version": "node check-version.js verbose"
},
推荐文章
- Node.js上的html解析器
- 错误:无法找到模块“webpack”
- 如何导入本地包没有gopath
- 如何从Python包内读取(静态)文件?
- 在node.js中使用async / await文件系统
- NodeJS -用NPM安装错误
- 如何为本地安装npm包设置自定义位置?
- 回调函数来处理管道的完成
- Express函数中的“res”和“req”参数是什么?
- node.js TypeError:路径必须是绝对路径或指定根路径到res.sendFile[解析JSON失败]
- Passport.js -错误:序列化用户到会话失败
- Node.js vs .Net性能
- 从电子应用程序中删除菜单栏
- 如何用node.js实现一个安全的REST API
- 如何处理Node.js中的循环依赖