
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
vue-hot-reload-loader
Advanced tools
Enable hot module replacement (HMR) on your Vue components.
This loader is for Vue components written in .js
(or other non single file components format) file. If you are using .vue
file, you don't need this loader because they already have HMR feature.
# NPM
$ npm install --save-dev vue-hot-reload-loader
# Yarn
$ yarn add --dev vue-hot-reload-loader
You need to update your webpack config to let webpack awere vue-hot-reload-loader
. Note that you should carefuly set webpack's rule condition so that vue-hot-reload-loader
is only used for actual component files. See a discussion.
module.exports = {
module: {
rules: [
{
test: /\.js/,
use: ['vue-hot-reload-loader', 'buble-loader'],
// If and only if all your components are in `path/to/components` directory
include: path.resolve(__dirname, 'path/to/components')
}
]
}
}
And you have to export each component as default export.
export default {
data () {
return {
message: 'hi'
}
}
}
MIT
FAQs
Enable hot module replacement (HMR) on your Vue components
The npm package vue-hot-reload-loader receives a total of 84 weekly downloads. As such, vue-hot-reload-loader popularity was classified as not popular.
We found that vue-hot-reload-loader 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.