hoopoe-node
v0.0.4
Published
Node SDK for Hoopoe
Downloads
1
Readme
About The Project
Hoopoe is a platform that helps you notify yourself when something important happens in your platform!
Getting Started
There's two ways to use hoopoe, either you can user Hoopoe.app or host it yourself.
Installation
- Get a free API Key at https://hoopoe.app
- Install NPM packages
npm install hoopoe-node
Usage
First import hoopoe-node and create an instance of it.
const Hoopoe = require('hoopoe-node');
const hoopoe = new Hoopoe({
api_key: 'your_hoopoe_api_key',
version: '1', // API version, default 1
base_url: 'https://...', // self-hosted only
})
Then you can send a notification to yourself using like this:
await hoopoe.upupa("Your message here", {
"extra": "info",
"could": "be",
"added": "here",
})
By default the upupa
command will send the code trace back, you have the option to disable it:
await hoopoe.upupa("", {}, false)
See the open issues for a full list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/amazing-feature
) - Commit your Changes (
git commit -m 'Add some amazing-feature'
) - Push to the Branch (
git push origin feature/amazing-feature
) - Open a Pull Request
License
Distributed under the MIT License. See LICENSE.txt
for more information.