npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@thomptronics/node-red-contrib-alexa-notify-me

v1.0.0

Published

A Node-RED node to send Alexa Notifications via the Notify Me skill by Thomptronics

Downloads

20

Readme

node-red-contrib-alexa-notify-me

A Node-RED node to send Alexa Notifications via the Notify Me skill by Thomptronics. To learn more about Notify Me, please visit www.notifymyecho.com

IMPORTANT NOTE: Notify Me is only available in the countries that allow English-speaking Alexa skills.

Install

Run the following npm command in your Node-RED user directory (typically ~/.node-red):

npm install @thomptronics/node-red-contrib-alexa-notify-me

Node Configuration

Access Code

Put your Access Code in the node's Properties tab. The Access Code is required for communications with Alexa.

See www.notifymyecho.com for detailed information how to get your own unique access code.

Notification

The Notification string you want to send can be put in the node's Properties tab or passed in via msg.payload. A notification found in the node's Properties tab will override one passed in msg.payload, so be sure to empty the Properties' Notification field if you want to pass your notification via the payload.

You must specify a notification string in either the Properties tab or in msg.payload since there would be no point in sending an empty notification.

Title

The Title string appears on Echo Show screens when the notification arrives. A title passed in msg.topic will override any title found in the node's Properties tab. A title is optional and, if not specified by either msg.topic or the Properties tab, defaults to "Notification from Yourself."

Node Usage

The following flow is a simple example of how to use this node:

[{"id":"66f244c7099a0e6d","type":"tab","label":"Alexa Notify Me","disabled":false,"info":"","env":[]},{"id":"d6a18213066005c6","type":"notify-me","z":"66f244c7099a0e6d","name":"","title":"Greetings from Node-RED","notification":"","x":300,"y":160,"wires":[["6b53158ace42fb38"]]},{"id":"df7c875d569b70e7","type":"inject","z":"66f244c7099a0e6d","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"Hello World","payloadType":"str","x":130,"y":160,"wires":[["d6a18213066005c6"]]},{"id":"6b53158ace42fb38","type":"debug","z":"66f244c7099a0e6d","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":450,"y":160,"wires":[]},{"id":"4e8a327792b14c89","type":"comment","z":"66f244c7099a0e6d","name":"Press the 'Hello World' inject button below to send a notification to your Alexa devices...","info":"","x":340,"y":100,"wires":[]},{"id":"a0bc665065b873b1","type":"comment","z":"66f244c7099a0e6d","name":"Prerequisites (double click on this to view)","info":" Before you can use this node, you must:\n - Enable the Notify Me skill by Thomptronics\n - Launch the skill to trigger your access code email\n - Enter your Access Code in the node's Properties tab\n \nPlease visit www.notifymyecho.com for details\n ","x":200,"y":40,"wires":[]}]