
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
vite-plugin-stimulus-hmr
Advanced tools
HMR for Stimulus controllers in Vite.js, tweak your JS without refreshing the page.
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.
Changes to Stimulus controllers don't require a full page refresh.
The modified controller will be re-registered, so existing instances of it will disconnect
, and new instances will be created and connect
ed with the updated code.
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
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! 🚀
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.
The gem is available as open source under the terms of the MIT License.
FAQs
HMR for Stimulus controllers in Vite.js, tweak your JS without refreshing the page.
The npm package vite-plugin-stimulus-hmr receives a total of 71,185 weekly downloads. As such, vite-plugin-stimulus-hmr popularity was classified as popular.
We found that vite-plugin-stimulus-hmr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.