os.arch()
返回为其编译 Node.js 二进制文件的操作系统 CPU 架构。可能的值为 'arm'、'arm64'、'ia32'、'loong64'、'mips'、'mipsel'、'ppc64'、'riscv64'、's390x'、以及 'x64'。
¥Returns the operating system CPU architecture for which the Node.js binary was
compiled. Possible values are 'arm', 'arm64', 'ia32', 'loong64',
'mips', 'mipsel', 'ppc64', 'riscv64', 's390x', and 'x64'.
返回值相当于 process.arch。
¥The return value is equivalent to process.arch.