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

chunk-rename-webpack-plugin

v1.1.1

Published

Webpack plugin to name chunk files independently of output.filename & output.chunkFilename

Downloads

1,091

Readme

chunk-rename-webpack-plugin

npm version devDependencies Status Build Status Coverage Status License: MIT

This plugin allows you to rename specific chunks in your bundle independently from the configuration you set in output.filename and output.chunkFilename. Works with webpack 1+.

Use cases

In general: Your output file names do not follow a consistent pattern.

  • You want to hash all but one of your files (e.g. you have a file init.js, that needs a static name, but all other files should be hashed)
  • You want some files to use the module name ([name]) and some files to use the module id ([id])
  • And others ...

Compatiblity

This plugin is tested with the following module/runtime versions:

  • webpack 1.15.0, 2.5.1, 3.8.1
  • Node.js 4+ (older Node.js versions and io.js do not work - sorry)

Usage

const path = require("path");
const ChunkRenamePlugin = require("chunk-rename-webpack-plugin");

module.exports = {
    entry: {
        init: "./src/init.js",
        vendor: "./src/vendor.js"
    },

    output: {
        path: path.resolve(__dirname, "..", "tmp"),
        filename: "[name]-[chunkhash].js",
        chunkFilename: "chunk-[name]-[chunkhash].js"
    },

    plugins: [
        new ChunkRenamePlugin({
            init: "init.js",
            login: "chunk-[name]-page.js"
        })
    ]
};

Result:

Hash: 8f17bb6534edbcdd963e
Version: webpack 1.15.0
Time: 73ms
                          Asset       Size  Chunks             Chunk Names
                        init.js     4.2 kB       0  [emitted]  init
            chunk-login-page.js  117 bytes       1  [emitted]  login
summary-8079db00b7b1bd6a78e6.js  113 bytes       2  [emitted]  summary
 vendor-ae2570120d44d2ba301c.js    1.43 kB       3  [emitted]  vendor
   [0] ./src/init.js 440 bytes {0} [built]
   [0] ./src/vendor.js 39 bytes {3} [built]
   [1] ./src/loginPage.js 30 bytes {1} [built]
   [2] ./src/summaryPage.js 32 bytes {2} [built]

The only argument for the plugin is an object that maps chunk names (as displayed in the webpack output) to filename templates. You can use all placeholders available for output.filename in case you want to rename an entry chunk. If you want to rename a non-entry chunk you can use all variables available in output.chunkFilename.

Development

To be able to run the tests via npm test you have to call npm run preparetest beforehand. This installs webpack 1 and 2 into seperate folders (that's why they are not listed as devDependencies in the main package.json).

Thanks

This plugin is heavily inspired by the core CommonsChunkPlugin. Thanks to all webpack contributors for that!