detect-pi
Detect if node is currently running on a raspberry pi.
Usage
npm install detect-rpi --save
const isPi = require('detect-rpi');
if (isPi()) {
console.log('Running on Raspberry Pi!');
} else {
// ...
}
How?
Reads /proc/cpuinfo and checks for the hardware model.