Nodejs, Find 32 or 64 bit in windows/Linux
August 3, 2022 · 2 min read
We sometimes need to know whether NodeJS is installed on 32-bit or 64-bit Windows, Linux, Mac, and Ubuntu PCs. 32 bit is 4 bytes of data, 64 bit is 8 bytes of data memory allocated, so Each machine has a different architecture to store and process the data. Nodejs offers multiple ways to know it. using REPL Javascript programming Check 32-bit or 64-bit using REPL REPL is a console for NODEJS to execute commands....