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.siku

v0.1.4

Published

ioBroker adapter for SIKU RV V2 ventilation devices

Readme

Logo

ioBroker.siku

NPM version Downloads Number of Installations Current version in stable repository

NPM

Tests: Test and Release

Overview

This adapter integrates SIKU RV V2 residential ventilation devices into ioBroker.

The current repository state targets a feature-complete public beta for local-network operation and the official ioBroker latest intake.

Features

  • UDP communication based on the documented manufacturer protocol
  • Multi-device support in one adapter instance
  • Broadcast discovery in the local network
  • JSON config based admin page for multiple devices
  • Separate RTC time check every 24 hours by default
  • Time synchronization only when the configured drift threshold is exceeded
  • State-based control for the main operating parameters
  • Full weekly schedule mapping via ioBroker states
  • Localized enum labels for fan mode and timer mode
  • Readable local timestamp companion states for poll and discovery timestamps
  • Encrypted and protected storage of configured device passwords

Supported core functions

  • Discovery of master devices via broadcast (0x007C, 0x00B9)
  • Management of multiple devices by stable device IDs
  • Polling of status, sensor and diagnostic values
  • Writing of central parameters via states, for example:
    • power
    • fan speed
    • manual fan speed
    • fan mode
    • timer mode
    • humidity setpoint
    • sensor enable flags
  • Weekly schedule structure such as:
    • schedule.monday.p1.speed
    • schedule.monday.p1.endHour
    • schedule.monday.p1.endMinute
    • ... up to schedule.sunday.p4.*
  • Diagnostic values such as:
    • filter countdown
    • operating hours
    • alarm level
    • filter replacement indication
    • last discovery / last poll / last time check

Device references

The adapter is built for the SIKU RV V2 family such as SIKU RV 50 W Pro WiFi V2 and related devices in the same protocol family.

Development

Useful scripts:

| Script | Purpose | | -------------------- | ---------------------------------------------- | | npm run build | Compile the TypeScript sources | | npm run check | Run type checking without building | | npm run lint | Run ESLint | | npm run test | Run unit and package tests | | npm run coverage | Generate test coverage for TypeScript tests | | npm run dev-server | Start a local ioBroker development environment | | npm run release | Create an official release/tag via release-tooling |

The adapter was generated with the official ioBroker tooling and is developed in TypeScript.

CI / CD

  • Pull requests run a lean Ubuntu smoke test after linting and type-checking.
  • main runs the release-relevant Linux/macOS matrix.
  • Windows runs in a separate scheduled/manual regression workflow because the ioBroker controller bootstrap is significantly slower there.
  • Patch versions can be bumped automatically on successful main runs via .github/workflows/auto-patch-release.yml.
  • Tagged releases are published to npm directly from GitHub Actions via Trusted Publishing.
  • GitHub Releases are created automatically with generated release notes; an optional Copilot summary can be prepended when the repository secret COPILOT_GITHUB_TOKEN is configured.

Publication readiness

A short release and repository checklist is available in RELEASING.md.

Beta notes

  • Discovery, polling, time checks and schedule reads have already been validated against multiple real devices.
  • Live write tests have intentionally been kept conservative.
  • Network/service functions such as Wi-Fi reconfiguration, password changes or factory reset are intentionally not exposed as normal writable states.

Changelog

0.1.4 (2026-04-18)

  • Hardened the GitHub release workflow so npm Trusted Publishing prefers GitHub OIDC over token-based npm auth

0.1.3 (2026-04-18)

  • Normalized the GitHub repository URL metadata for npm Trusted Publishing compatibility

0.1.2 (2026-04-18)

  • Prepared the adapter for ioBroker latest intake with encrypted config handling and cleaner CI job separation
  • Added a dedicated Windows regression workflow and a clearer public beta versioning baseline
  • Added Trusted Publishing based npm CD plus automatic GitHub release notes with optional Copilot summaries

0.1.1 (2026-04-18)

  • Cleaned up adapter-check metadata for the latest intake and npm follow-up release
  • Removed deprecated common.title usage and trimmed io-package keywords
  • Simplified the io-package news list to published npm versions only

0.1.0 (2026-04-17)

  • First public beta with ioBroker publication hardening, encrypted device passwords and streamlined CI
  • Added protected/encrypted native device password handling for JSON-config table rows
  • Split slow Windows adapter tests into a dedicated regression workflow
  • Improved publication metadata, title handling and patch-version release preparation

Older changelog entries are available in CHANGELOG_OLD.md.

0.0.1 (2026-04-17)

  • Initial beta with discovery, multi-device runtime, time checks and schedule support
  • Added localized mode enums, local timestamp companion states and timer countdown visibility

License

MIT License

Copyright (c) 2026 Christian Maaß [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.