node-red-nodes/README.md

7.6 KiB

Node-RED Nodes

A collection of nodes for Node-RED. See below for a list.

Installation

Most of these nodes are available as npm packages. See the list below for the npm p ackage names, or search npm.

To install

cd node-red
npm install node-red-node-{*filename*}

This repository acts as an overall store for these nodes - and is no longer intended as a way to install them - unless you really do want some bloat.

To manually install using this repo:

  1. cd into the nodes directory of Node-RED
  2. Either:
  • download the zip of the repository and extract it
  • run git clone https://github.com/node-red/node-red-nodes.git
  1. npm install in any of the node subfolders to install individual node's dependencies

Contributing

Now that we support npm installaton of nodes we recommend people post their own via npm. Please read the packaging guide notes.

If you are an IBMer, please contact us directly as the contribution process is slightly different.

Copyright 2013,2014 IBM Corp. under the Apache 2.0 license.

Extra Node Information

NPM name - File-link - Description

Analysis

node-red-node-wordpos - 72-wordpos - Analyses the payload and classifies the part-of-speech of each word. The resulting message has msg.pos added with the results. A word may appear in multiple categories (eg, 'great' is both a noun and an adjective).

node-red-node-badwords - 74-swearfilter - Analyses the payload and tries to filter out any messages containing bad swear words. This only operates on payloads of type string. Everything else is blocked.

Function

node-red-node-smooth - 17-smooth - A simple node to provide various functions across several previous values, including max, min, mean, high and low pass filters.

Hardware

node-red-node-beaglebone - 145-BBB-hardware - A collection of analogue & digital input & output nodes for the Beaglebone Black.

node-red-node-piface - 37-rpi-piface - Adds support for the PiFace interface module for Raspberry Pi.

node-red-node-pibrella - 38-rpi-pibrella - Controls a Pibrella add-on board for a Raspberry-Pi.

node-red-node-piliter - 39-rpi-piliter - Controls a Pimorini Pi-LITEr 8 LED add-on board for a Raspberry-Pi.

node-red-node-blinkstick - 76-blinkstick - Provides support for the BlinkStick USB LED device.

node-red-node-blink1 - 77-blink1 - Provides support for the Blink1 USB LED from ThingM.

node-red-node-ledborg - 78-ledborg - A simple driver for the LEDborg plug on module for Raspberry Pi.

node-red-node-digirgb - 78-digiRGB - Provides support for the DigiSpark RGB USB LED.

node-red-node-wemo - 60-wemo - Basic node to drive a WeMo socket and switch. Does not use discovery.

node-red-node-makeymakey - 42-makey - A Node-RED node to read from a MakeyMakey input device.

node-red-node-sensortag - 79-sensorTag - Reads data from the Ti Bluetooh Low Energy (BLE) SensorTag device.

N/A - 100-heatmiser-in - Writes settings for temperature and frost protection to Heatmiser thermostats.

N/A - 101-heatmiser-out - Reads settings from Heatmiser thermostats at a polling interval.

N/A - 101-scanBLE - Scans for a particular Bluetooth Low Energy (BLE) device.

N/A - 103-hue_discover - Looks for a Philips Hue Bridge in the local network.

N/A - 104-hue_manage - Implements some basic functionality for managing a Philips Hue wireless Lamp system.

IO

node-red-node-stomp - 18-stomp - A Node-RED node to publish and subscribe to and from a STOMP server.

node-red-node-wol - 39-wol - Sends a Wake-On-LAN magic packet to the mac address specified. You may instead set msg.mac to dynamically set the target device mac to wake up.

node-red-node-ping - 88-ping - Pings a machine and returns the trip time in mS. Returns false if no response received within 3 seconds, or if the host is unresolveable. Default ping is every 20 seconds but can be configured.

N/A - 88-emoncms - Adds node to post to an Emoncms server.

Social

node-red-node-twilio - 56-twilio - Uses Twilio service to send/receive text messages.

node-red-node-dweetio - 55-dweetio - Uses dweetio to send/receive messages.

node-red-node-nma - 57-nma - Sends alerts to Android devices via the Notify-My-Android app.

node-red-node-notify - 57-notify - Uses Growl to provide a desktop popup containing the payload. Only useful on the local Apple machine.

node-red-node-prowl - 57-prowl - Uses Prowl to push the payload to an Apple device that has the Prowl app installed.

node-red-node-pushbullet - 57-pushbullet - Uses PushBullet to push the payload to an Android device that has the PushBullet app installed.

node-red-node-pushover - 57-pushover - Sends alerts via Pushover.

node-red-node-xmpp - 92-xmpp - Connects to an XMPP server to send and receive messages.

N/A - 79-snapchat - Downloads SnapChat images from the account specified.

N/A - 114-pusher - Publish-Subscribe to a Pusher channel/event.

Storage

node-red-node-leveldb - 67-leveldb - Uses LevelDB for a simple key value pair database.

node-red-node-mysql - 68-mysql - Allows basic access to a MySQL database. This node uses the query operation against the configured database. This does allow both INSERTS and DELETES. By it's very nature it allows SQL injection... so be careful out there...

node-red-node-sqlite - sqlite - Supports read and write to a local sqlite database.

Time

node-red-node-suncalc - 79-suncalc - Uses the suncalc module to generate an output at sunrise and sunset based on a specified location. Several choices of definition of sunrise and sunset are available,

Utility

node-red-node-exif - 94-exif - Extracts GPS and other EXIF information from a passed in jpeg image,

node-red-node-daemon - daemon - starts up (calls) a long running system program and pipes STDIN, STDOUT and STDERR to and from that process. Good for monitoring long running command line applications,

Misc

N/A - 99-sample - A sample node with more comments than most to try to help you get started without any other docs...