Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fourcube/detect-rpi

Detects if node is running on a Raspberry Pi.
https://github.com/fourcube/detect-rpi

Last synced: 2 months ago
JSON representation

Detects if node is running on a Raspberry Pi.

Awesome Lists containing this project

README

        

[![npm version](https://badge.fury.io/js/detect-rpi.svg)](https://badge.fury.io/js/detect-rpi)
# detect-pi

Detect if node is currently running on a raspberry pi.

## Usage

`npm install detect-rpi --save`

```js
const isPi = require('detect-rpi');

if (isPi()) {
console.log('Running on Raspberry Pi!');
} else {
// ...
}
```

## How?

Reads /proc/cpuinfo and checks for the hardware model.