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 🙏

© 2024 – Pkg Stats / Ryan Hefner

webpack-bundle-update-hook-plugin

v1.1.0

Published

Add a tapable 'bundle-update' hook to webpack. On bundle updates registered plugins get lists of new, changed and removed modules.

Downloads

209

Readme

webpack-bundle-update-hook-plugin

Build Status

Add a Tapable 'bundle-update' hook to webpack. On bundle updates, registered plugins get lists of new, changed and removed modules.

This plugin can be useful in combination with webpack-dev-middleware or webpack-dev-server. The plugin adds a new hook named bundle-update to which other plugins can register. After each bundle update, registered plugins receive lists of new, changed and removed files. These can for example be used for server side hot module reloading.

Installation

npm install webpack-bundle-update-hook-plugin --save-dev

Usage

Add the plugin to your webpack.config.js file:

var BundleUpdateHookPlugin = require('webpack-bundle-update-hook-plugin');

module.exports = {

    // ...

    plugins: [
        // ...
        new BundleUpdateHookPlugin()
    ]

};

Then use webpack's Node.js API to get a compiler with this configuration. The compiler exposes the Tapable API for registering plugins (the compiler is an instance of Tapable). With the webpack-bundle-update-hook-plugin you can now create plugins for the hook bundle-update:

var webpack = require('webpack');
var webpackConfig = require('./webpack.config');

var compiler = webpack(webpackConfig);

compiler.plugin('bundle-update',
                function (newModules, changedModules, removedModules, stats) {
    // newModules, changedModules and removedModules are objects. The properties
    // of the objects are module ids, the values of these properties are the
    // corresponding module resources (= absolute module paths).

    // stats is passed as is from the compilers 'done' plugin hook.

    console.log('new modules: ', newModules);
    console.log('changed modules: ', changedModules);
    console.log('removed modules: ', removedModules);
});

Note: The bundle-update event will only be emitted if there was a change (a module added, changed or removed). Thus, the event will never be emitted after the first build. However, Webpack may emit multiple builds in watch mode even if no files change. This means that the bundle-update event can be emitted before any files change. See watchpack issue #25 for an example of such a scenario.

How it works

The plugin hooks into the webpack compiler's done hook. The done event is fired whenever webpack has finished a build. The callback function receives a stats object which contains a list of all the modules in the current bundle in stats.compilation.modules. Each module has (among others) an id property and a buildTimestamp property. Resource modules (non webpack internal modules) also have a resource property.

On each done event, the plugin generates a list of module ids and buildTimestamps, skipping modules that don't have a resource property. For the first build, nothing else is done. For subsequent builds, the previous list is compared to the current list: missing module ids on the old list identify new modules, missing module ids on the new list identify removed modules, same module id and different buildTimestamp identifies changed modules.

Options

debug

Debug output can be enabled by setting the debug flag in the plugin options to true:

new BundleUpdateHookPlugin({ debug: true })

Run tests

npm install
npm test

License

MIT (see LICENSE file)