Update error message for uWS.js version 20.55.0

This commit is contained in:
uNetworkingAB
2025-10-21 02:44:32 +02:00
committed by GitHub
parent c69221dc30
commit e1270451a9

View File

@@ -19,7 +19,7 @@ module.exports = (() => {
try {
return require('./uws_' + process.platform + '_' + process.arch + '_' + process.versions.modules + '.node');
} catch (e) {
throw new Error('This version of uWS.js (v20.54.0) supports only Node.js versions 20, 22, 24 and 25 on (glibc) Linux, macOS and Windows, on Tier 1 platforms (https://github.com/nodejs/node/blob/master/BUILDING.md#platform-list).\n\n' + e.toString());
throw new Error('This version of uWS.js (v20.55.0) supports only Node.js versions 20, 22, 24 and 25 on (glibc) Linux, macOS and Windows, on Tier 1 platforms (https://github.com/nodejs/node/blob/master/BUILDING.md#platform-list).\n\n' + e.toString());
}
})();