mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
⚡ Check on startup for Node.js version 14 or later
This commit is contained in:
parent
043cf6730c
commit
3d2eaa3aaa
|
@ -24,8 +24,8 @@ if (process.argv.length === 2) {
|
||||||
|
|
||||||
var nodeVersion = process.versions.node.split('.');
|
var nodeVersion = process.versions.node.split('.');
|
||||||
|
|
||||||
if (parseInt(nodeVersion[0], 10) < 12 || parseInt(nodeVersion[0], 10) === 12 && parseInt(nodeVersion[1], 10) < 9) {
|
if (parseInt(nodeVersion[0], 10) < 14) {
|
||||||
console.log(`\nYour Node.js version (${process.versions.node}) is too old to run n8n.\nPlease update to version 12.9 or later!\n`);
|
console.log(`\nYour Node.js version (${process.versions.node}) is too old to run n8n.\nPlease update to version 14 or later!\n`);
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue