New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vite-plugin-stimulus-hmr

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-stimulus-hmr

HMR for Stimulus controllers in Vite.js, tweak your JS without refreshing the page.

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
65K
increased by6.33%
Maintainers
1
Weekly downloads
 
Created
Source

vite-plugin-stimulus-hmr

HMR for Stimulus controllers in Vite.js


This plugin for Vite.js provides HMR for Stimulus controllers, allowing you to tweak your code without having to wait for the page to refresh.

Demo 🎥

Changes to Stimulus controllers don't require a full page refresh.

Screen Shot 2021-02-15 at 13 27 22

The modified controller will be re-registered, so existing instances of it will disconnect, and new instances will be created and connected with the updated code.

Installation 💿

HMR comes installed by default in Jumpstart Rails with Vite.js, a starter template that you can use to start your next Rails app.

If installing manually:

npx ni vite-plugin-stimulus-hmr

Usage 🚀

Add it to your plugins in vite.config.js

// vite.config.js
import StimulusHMR from 'vite-plugin-stimulus-hmr' 

export default {
  plugins: [
    StimulusHMR(),
  ],
};

You should now enjoy HMR for your Stimulus controllers! 🚀

How does it work? 🤔

In order to simplify integration, the plugin will try to automatically detect when you define your Stimulus app, as in:

const app = Application.start()

It will then detect any controller files using the Stimulus conventions, and inject an HMR accept call that re-registers the updated controller.

Just as when you use Turbolinks, it's important that your controllers are idempotent.

License

The gem is available as open source under the terms of the MIT License.

Keywords

FAQs

Package last updated on 21 Mar 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc