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 🙏

© 2024 – Pkg Stats / Ryan Hefner

iobroker.matrix-org

v1.1.0

Published

Adapter for pushing matrix messages into a room

Downloads

109

Readme

Logo

ioBroker.matrix-org

NPM version Downloads Number of Installations Current version in stable repository

NPM

Tests: Test and Release

matrix-org adapter for ioBroker

Adapter for matrix push messages Big thanks for creating matrix (https://matrix.org/) for creating a full free communication base

Configuration

Best: Run your own client on your server!

Create an own user as your BOT with password. Create a room for all members who want the bot messages. Add your BOT to this room (not needed if autojoin is active). Add all members to this room. Put all the data into the config. (BOT name, password, room name)

Usage

Add as many instances as you need. Add a value to matrix-org.0.sendMessage on the way you like, with js If you set "image" to matrix.0.sendMessage, it will send the matrix logo to your channel. Or in js use:

sendTo("matrix-org.0", "Hello World!");

Or use the blockly symbol in Sendto.

For images from local file system (Linux):

sendTo("matrix-org.0",{file: "file:///tmp/images/test.png"});

For images from local file system (Windows):

sendTo("matrix-org.0",{file: "file:///C:/tmp/images/test.png"});

For images as reference:

sendTo("matrix-org.0",{file: "https://www.abcd/images/test.png"});

For images in base64:

sendTo("matrix-org.0",{file:{type:"image/png",base64:"iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACmSURBVFhH7ZdhCoAgDEZnd9D737T8xJkNNY1Ef+yB2LTcC1qWOT20kCBgjIkh0WwfmeuIxyGYnRzIPElgFSqgAvsKOOdCzeZ1y7EcZzDG16HvwtckihLdA4xxk3HeGGttc17Cc+lN6Ds/dlO6w6/ItQHn7H4GcDK3Em/zNboE5KKjcQstQxVQARVYLlDdC2YzvBfMQgVUYB8BlMWfn2E1ZJ7Fv+dEF0UZoNhXp9NnAAAAAElFTkSuQmCC"}});

Or

sendTo("matrix-org.0",{file:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACmSURBVFhH7ZdhCoAgDEZnd9D737T8xJkNNY1Ef+yB2LTcC1qWOT20kCBgjIkh0WwfmeuIxyGYnRzIPElgFSqgAvsKOOdCzeZ1y7EcZzDG16HvwtckihLdA4xxk3HeGGttc17Cc+lN6Ds/dlO6w6/ItQHn7H4GcDK3Em/zNboE5KKjcQstQxVQARVYLlDdC2YzvBfMQgVUYB8BlMWfn2E1ZJ7Fv+dEF0UZoNhXp9NnAAAAAElFTkSuQmCC"});

For html please follow this spec: https://spec.matrix.org/v1.3/client-server-api/#mroommessage-msgtypes E.g.:

sendTo("matrix-org.0",{html: "<h1>Hello World!</h1>", text: "Hello World!"});

or

sendTo("matrix-org.0",{html: "<table><tr><td>1</td><td>2</td></tr><tr><td>a</td><td>b</td></tr><table>", text: "Your client can not show html!"});

If your client is not able to decode html you will get the text. If your client do not support table it either show the text or simply 12ab.

to test your configuration use sendMessage

simply open the objects and change the string of one matrix-org instance Mostly the port is 443, if you have a public system like matrix.org The port is sometimes 8448, when you have a self hosted system without proxy, but then you know it.

If you like to test it: Server: matrix.org Port: 443 room: #test-ioBroker-adapter:matrix.org Join this room and try it out with your own credentials

Changelog

1.1.0 (2024-11-23)

  • upgrade matrix-js-sdk
  • auto join added (default false)

1.0.0 (2023-04-01)

  • upgrade matrix-js-sdk (node 18 needed)

0.1.6 (2023-04-01)

  • last version for node 16
  • updated libs according dependabot accept matrix-js-sdk

0.1.5 (2023-03-02)

  • downgrade for node 16
  • translation for configuration

0.1.4 (2023-02-04)

  • update of dependencies
  • small readme improvement

0.1.3 (2022-11-03)

  • updates of dependencies

0.1.2 (2022-08-12)

  • base64 with html format added again
  • html messages added

0.1.1 (2022-08-08)

  • bugfix local file system was not working
  • bugfix base64 was not working
  • unit test added

0.1.0 (2022-08-05)

  • sending files added
  • sending from url and base64 encoded data
  • image ans video mime types are send as image and video all others as file

0.0.7 (2022-07-24)

  • removed all axios request
  • replaced with matrix-js-sdk calls
  • no logoff during the whole time
  • test with servers with access token expiery need to be done
  • sync added
  • receive message added (please check on update and not on change to react on the same message)

0.0.6 (2022-07-10)

  • repeat false set for stable admin v5.3.8
  • Readme with example improved (how to chose port 443 or 8448)
  • some more debug output on errors

0.0.5 (2022-07-08)

  • sendMessage stay in for fast config testing
  • index_m.html and files from admin/build removed
  • password encryption and protection enabled
  • password field now as type password
  • detection of missing config give an error log
  • detection of unread room data give an error log
  • encodeURI() used where possible
  • catching termination during await for avoid errors when writing on ioBroker database
  • adding matrix to blockly symbol

0.0.4 (2022-07-02)

  • blockly added
  • onMessage method added

0.0.3 (2022-06-26)

  • Invalid workflow line 54 in test-and-release.yml (leading space removed)

0.0.2 (2022-06-26)

  • (oelison) message sending by setting object sendMessage implemented
  • (oelison) most "try/catch" done
  • (oelison) Readme completed.

0.0.1 (2022-06-26)

  • (oelison) initial release

License

MIT License

Copyright (c) 2024 Christian Oelschlegel [email protected]

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.