1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #4019 from node-red/force-ipv4-lookup-over-ipv6

if possible - force ipv4 name resolution to have priority
This commit is contained in:
Nick O'Leary 2023-01-23 16:58:21 +00:00 committed by GitHub
commit 937c5fe893
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,9 +25,15 @@ var api = require("@node-red/editor-api");
var server = null;
var apiEnabled = false;
const NODE_MAJOR_VERSION = process.versions.node.split('.')[0];
if (NODE_MAJOR_VERSION > 14) {
const dns = require('node:dns');
dns.setDefaultResultOrder('ipv4first');
}
function checkVersion(userSettings) {
var semver = require('semver');
if (!semver.satisfies(process.version,">=8.9.0")) {
if (!semver.satisfies(process.version,">=12.0.0")) {
// TODO: in the future, make this a hard error.
// var e = new Error("Unsupported version of Node.js");
// e.code = "unsupported_version";