Dashboard › cli › Always guard Node.js API availability a…
019f6b0e-5bf8-794e-9ff8-bc5565499e2fUser consistently identifies and fixes module-level calls to Node.js APIs that may not exist in certain versions. They require wrapping such calls in runtime availability checks (e.g., typeof api === 'function') to prevent import-time crashes. This applies particularly to newer APIs like zlib.zstdCompress that aren't available in older Node.js versions.