node-ifttt-maker

1.0.2 • Public • Published

node-ifttt-maker

NPM

Build Status DAVID npm version Development Dependency Status Code Climate

A simple wrapper that will connect with the IFTTT maker channel

Usage

const IFTTT = require('node-ifttt-maker');
const ifttt = new IFTTT('<YOUR MAKER KEY>');
 
const event = 'eventname';
 
// Simple request
ifttt
  .request(event)
  .then((response) => {})
  .catch((err) => {});
 
// Using POST
const method = 'POST';
 
ifttt
  .request({ event, method })
  .then((response) => {})
  .catch((err) => {});
 
// Adding values (only value1, value2 and value3 are accepted by IFTTT)
const params = {
    'value1': 'test',
    'value2': 2,
    'value3': {
        x: 1, y: 2
    }
}
 
ifttt
  .request({ event, params })
  .then((response) => {})
  .catch((err) => {});
 
// The 'old' way of calling Maker using a callback still works
ifttt.request(event, (err, body) {
    if (err) {
      console.log(err);
    } else {
      console.log(body);
    }
});

Bugs / issues / features

Please, if you find any bugs, or are a way better developer than I am (as in, you are thinking 'spaghetti' when looking at my code), feel free to create an issue. If you have features or addons for compatibility, please add a pull request!

License

(The MIT License)

Copyright (c) 2017 Jelte Lagendijk jwlagendijk@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i node-ifttt-maker

Weekly Downloads

8

Version

1.0.2

License

MIT

Unpacked Size

63.1 kB

Total Files

6

Last publish

Collaborators

  • j3lte