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

v0.3.6

Published

Air quality data from Airly stations

Readme

ioBroker.airly

Adapter reading air quality data (PM2.5, PM10, CAQI index) for your location from Airly.

Sentry

This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers. For more details and for information how to disable the error reporting see Sentry-Plugin Documentation! Sentry reporting is used starting with js-controller 3.0.

Configuration

| Setting | Meaning | | ---------------- | --------------------------------------------------------------- | | apikey | Airly API key (developer.airly.org) | | latitude | Your latitude | | longitude | Your longitude | | mode | point — interpolated for your exact coordinates (default); nearest — data from the closest physical station | | maxDistanceKM | Search radius for the closest station (km); only used in nearest mode | | pollInterval | How often to fetch measurements (minutes) |

Each poll makes a single request to Airly's measurements/point (or measurements/nearest) endpoint, which takes your coordinates directly — there is no separate station lookup to manage.

Airly limits its free public API to 100 calls per day — about one call every 15 minutes. Keep pollInterval at 20 minutes or longer (≈72 calls/day) to stay comfortably within the quota. The remaining daily quota is written to the debug log on every poll.

States

| State | Description | | ----------------------- | ---------------------------------------- | | pm25.value | PM2.5 concentration (µg/m³) | | pm25.limitPercent | PM2.5 as % of the norm | | pm10.value | PM10 concentration (µg/m³) | | pm10.limitPercent | PM10 as % of the norm | | caqi.value | CAQI index value | | caqi.level | CAQI level (e.g. LOW, MEDIUM) | | caqi.description | Human-readable air quality description | | info.connection | API reachable / data valid | | info.lastUpdate | Timestamp of the last measurement |

Installation

Open the Adapters tab in the ioBroker admin, find Airly and click the + button to install it and add an instance. Then open the instance settings and fill in your Airly API key and coordinates.

Changelog

0.3.6 (2026-07-11)

  • (tnowak) Read coordinates fresh on every poll and skip the request (instead of sending NaN) when they are invalid, logging the offending value; set info.connection = false on stop

0.3.5 (2026-07-08)

  • (tnowak) Fixed the jsonConfig schema URL in .vscode/settings.json and bumped @iobroker/adapter-dev

0.3.4 (2026-07-08)

  • (tnowak) Addressed repochecker suggestions: short-format i18n, CHANGELOG_OLD.md, .vscode settings, Dependabot automerge + higher PR limit, and @iobroker/adapter-dev

0.3.3 (2026-07-08)

  • (tnowak) Removed chai and mocha from devDependencies (provided by @iobroker/testing) to satisfy the repository checker

0.3.2 (2026-07-08)

  • (tnowak) Added ESLint (@iobroker/eslint-config), tsconfig, Dependabot and the release-script for development and release automation

Older entries are kept in CHANGELOG_OLD.md.

License

The MIT License (MIT)

Copyright (c) 2026 tnowak [email protected]

See LICENSE for the full text.