Skip to content
Nerivec edited this page Sep 27, 2025 · 27 revisions

Getting the latest updates

Use dev branch of Zigbee2MQTT: https://www.zigbee2mqtt.io/advanced/more/switch-to-dev-branch.html

Using your current Zigbee2MQTT version

Caution

Some updates will require a minimum version (commit) of Zigbee2MQTT to work properly. This is usually the case when a new feature is introduced and changes are needed in the frontend. See the Zigbee2MQTT dev branch changelog.

Tip

You can install a specific WindFront version using the format pnpm i [email protected], example: pnpm i [email protected]

Baremetal

Stop Zigbee2MQTT.

Inside your Zigbee2MQTT installation folder:

pnpm update zigbee2mqtt-windfront --no-optional

Start Zigbee2MQTT again.

Container

Example with Docker:

docker exec -it CONTAINER_ID sh
apk add npm
npm install -g [email protected]
/usr/local/bin/pnpm update zigbee2mqtt-windfront --no-optional
exit
docker restart CONTAINER_ID

Note: the pnpm version should be the same as used by Zigbee2MQTT:

Clone this wiki locally