How can I know the CPU architecture and OS platform my workers are running on? In node.js I'd use ei
How can I know the CPU architecture and OS platform my workers are running on? In node.js I'd use either
At most, with
process.arch and process.platform, or os.arch() and os.machine(). However, there are no such options for CF Workers. At most, with
node_compat = true, I get os.arch() === "javascript" and process.platform === browser