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

node-red-contrib-alexa-remote-fork

v3.12.0

Published

node-red nodes for interacting with alexa

Downloads

19

Readme

node-red-contrib-alexa-remote-fork (is a fork of) node-red-contrib-alexa-remote2

This is a fork of https://github.com/586837r/node-red-contrib-alexa-remote2 which fixes some issues I had.
The reason of this fork is solely my impatience at the time.
Don't expect any further maintenance ;-) 

npm downloads

This is a collection of Node-RED nodes for interacting with the Alexa API. You can emulate routine behaviour, control and query your devices and much more!

All functionality is from alexa-remote2. The goal is to expose all of alexa-remote2s functionality in node-red nodes.

Setup

  1. Drag an Alexa Routine node into your flow.

  2. Create a new Account by pressing the edit button at the right side of the Account field.

  3. Choose a Service Host and Page and Language depending on your location. For example:

    | | Service Host | Page | Language | |-----|---------------------|---------------|----------| | USA | pitangui.amazon.com | amazon.com | en-US | | UK | alexa.amazon.co.uk | amazon.co.uk | en-UK | | GER | layla.amazon.de | amazon.de | de-DE | | ITA | alexa.amazon.it | amazon.it | it-IT | | AUS | alexa.amazon.com.au | amazon.com.au | en-US |

  4. Set This IP to the ip of your Node-RED server

  5. Enter a File Path to save the authentication result so following authentications will be automatic.

  6. Add the new Account.

  7. Deploy

  8. Follow the url you see in the node status

  9. Log in, wait until you see the node status ready

  10. Write "Hello World!" in the Alexa Routine node text field.

  11. Select a device in the Alexa Routine node devices field.

Now trigger the Alexa Routine Node with any message and your Alexa will say "Hello World!". (Hopefully!)

Guides

These are few community guides that can help you install the plugin/module. If you find more let us know.

Development with Docker

To quickly get your changes into a local and isolated NodeRED instance, you might find the following workflow useful

# Start up a docker container with the current code-base installed
$ npm run-script develop
# test it manually in the browser (http://localhost:1880)

# clean everything
$ npm run-script clean-docker

# repeat ..