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 🙏

© 2026 – Pkg Stats / Ryan Hefner

iobroker.gotify

v0.5.0

Published

Send push notifications to gotify

Readme

Logo

ioBroker.gotify

NPM version Downloads Number of Installations (latest) Number of Installations (stable)

NPM

Tests: Test and Release

gotify adapter for ioBroker

Send push notifications from ioBroker to Gotify

Changelog

0.5.0 (2025-12-28)

  • (Thomas Pohl) Allow to overwrite token when sending messages (javascript only not for blockly)
  • (Thomas Pohl) Update dependencies

0.4.0

  • (Thomas Pohl) Support for notification-manager was added
  • (Thomas Pohl) Blockly can now send messages with priority 10

0.3.0

  • (Thomas Pohl) The token is stored now encrypted
  • (Thomas Pohl) node.js 22 is supported

0.2.1

  • (Thomas Pohl) Optimized startup behavior when adapter is not configured

0.2.0

  • (Thomas Pohl) Add timeout for http calls
  • (Thomas Pohl) Update dependency versions

Installation

Preparation

  • Login with you user in gotify
  • Create an application for ioBroker
  • Note the token of your new application new application

In ioBroker

  • Goto Adapter
  • Click on github-cat-icon
  • Go to Custom tab
  • Enter https://github.com/ThomasPohl/ioBroker.gotify
  • Install
  • Create a new instance for the gotify-adapter
  • Enter the Url auf you installation
  • Add the previously created token

Usage

Blockly

To send messages using blockly. Just add the gotify block to your script: Blockly

If yoou choose Markdown as format you can use Markdown to format your messages.

Javascript

Send a simple message using the default token:

sendTo('gotify.0', 'send', {
    title: 'DG lüften',
    message: 'Luftfeuchtigkeit im DG zu hoch!',
});

Send a message with a custom token (overrides the configured default token):

sendTo('gotify.0', 'send', {
    title: 'Custom notification',
    message: 'This message uses a different token',
    priority: 8,
    contentType: 'text/markdown',
    token: 'AaBbCcDdEeFfGg123456',
});

Communication

The following diagramm illustrates how ioBroker sends push notifications to your smartphone. Communication diagram

Both the ioBroker and the smartphone app connect to the gotify server using REST. The mobile app keeps an open websocket to the gotify server to be able to receive new notification.

When the ioBroker-adapter wants to push a notification it send a POST request to the Gotify server. The gotify server takes care of pushing the notification to the client.

License

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Copyright (c) 2024-2025 Thomas Pohl [email protected]