nodejs-one-signal

A nodejs library to interact with One Signal Notifications API

Usage no npm install needed!

<script type="module">
  import nodejsOneSignal from 'https://cdn.skypack.dev/nodejs-one-signal';
</script>

README

node-one-signal

A Nodejs wrapper for the One Signal API

Installation

You can install the package via npm:

npm install nodejs-one-signal

Usage

Add a new device

const OneSignal = require('nodejs-one-signal');

const client = new OneSignal('appId', 'restApiSecret');

client.addDevice({
    "identifier": "ce777617da7f548fe7a9ab6febb56cf39fba6d382000c0395666288d961ee566",
    "timezone": "-28800",
    "device_type": 1
}).then(response => {
    console.log(response);
}).catch(err => {
    console.log(err);
})

In progress, feel free to submit PRs

Testing

npm run test

Contributing

Please see CONTRIBUTING for details.

License

The MIT License (MIT). Please see License File for more information.