/alexa-reminders

A nodejs library to create Amazon Echo Alexa Reminders

Primary LanguageJavaScriptMIT LicenseMIT

alexa-reminders

A nodejs library to create Amazon Echo Alexa Reminders

This librabry can also be used as a pseudo Push Notification alternative.

Read more about why here

Installation

$ npm install -S alexa-reminders

Usage

var reminders = require('alexa-reminders')

reminders.login('Device Name', 'username', 'password', function(error, response, config){
  reminders.setReminder('Ask Alexa team for a proper Reminders API', null, config, function(error, response){
    console.log(response)
  })
})

Listener

Use a listener server to listen for calls from services such as IFTTT https://github.com/noelportugal/alexa-reminders-listener

TODO

  • Create Listener example
  • Save cookies and device info in FileSystem file to avoid login every time