1
0
Fork 0
forked from svrjs/svrjs

fix: add notice about Deno support being experimental

This commit is contained in:
Dorian Niemiec 2024-10-18 20:15:13 +02:00
parent 648cf488d9
commit ad0417b468

View file

@ -1727,6 +1727,10 @@ function start(init) {
serverconsole.locwarnmessage(
"PBKDF2 password hashing function in Bun versions older than v1.1.13 blocks the event loop, which may result in denial of service."
);
} else if (process.versions && process.versions.deno) {
serverconsole.locwarnmessage(
`Deno support is experimental. Some features of ${name}, ${name} mods and ${name} server-side JavaScript may not work as expected.`
);
}
if (cluster.isPrimary === undefined)
serverconsole.locwarnmessage(