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

vite-hmr-tchmi

v1.1.2

Published

A utility library to enable Hot Module Replacement (HMR) for Beckhoff TwinCAT HMI (TcHmi) Framework Controls when using Vite.

Readme

vite-hmr-tchmi

A utility library to enable Hot Module Replacement (HMR) for Beckhoff TwinCAT HMI (TcHmi) Framework Controls when using Vite.


Disclaimer

This is not an official Beckhoff product. This project is a community-maintained tool. "TwinCAT" and "Beckhoff" are registered trademarks of Beckhoff Automation GmbH & Co. KG.


Description

This package provides the necessary logic to hot-reload TcHmi Controls without refreshing the entire browser page. It works by:

  • Prototype Patching: Dynamically updating the control's logic while preserving the internal state where possible.
  • Lifecycle Management: Automatically triggering __detach() and __attach() to re-render the control in the DOM.
  • Seamless Integration: Designed to work specifically with Vite's import.meta.hot API.

Installation

npm install vite-hmr-tchmi --save-dev

Usage

In your TcHmi Control script file, import the handler and call it within the Vite HMR lifecycle:

import { handleTcHmiHmr } from 'vite-hmr-tchmi';

// ... Your Control Class Definition ...
export class MyCustomControl extends TcHmi.Controls.System.TcHmiControl {
    // ...
}

// Enable HMR for this module
if (import.meta.hot) import.meta.hot.accept((newModule) => handleTcHmiHmr(newModule));

How it works

When a file change is detected, Vite provides the updated module. The handleTcHmiHmr function:

  1. Module Scanning: Scans the new module for classes extending TcHmiControl.
  2. Instance Mapping: Locates all active instances of these controls in the current TcHmi.Controls.getMap().
  3. Detaching: Calls __detach() on each instance to cleanly stop its current lifecycle.
  4. Prototype Patching: Swaps the internal prototype of the existing instance with the new logic from the updated module.
  5. Re-Attaching: Calls __attach() to re-render the control and restart its lifecycle with the new code.

API Reference

handleTcHmiHmr(newModule: any): void

The main entry point for patching controls.

| Parameter | Type | Description | | :--- | :--- | :--- | | newModule | any | The module object provided by import.meta.hot.accept. |