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-stats-duplicates

v2.1.0

Published

Search your webpack bundle stats.json for duplicate modules

Downloads

13,127

Readme

webpack-stats-duplicates

A utility for examining webpack stats.json files and looking for duplicate module imports. Inspired by Webpack Visualizer, an excellent tool for visualizing your webpack bundle. There is also a gulp plugin if you are into that.

CLI

Installation

$ npm install -g webpack-stats-duplicates

Usage

$ webpack-stats-duplicates stats.json

Usage example

Use the --help flag to see all command line options.

Config file

You can create a configuration file with options such as whitelist to be used when running. The utility will look for a .wsdrc file in the current working directory, or you can specify the location of the file with --config on the command line. See findDuplicates for all available configuration options.

API

Installation

$ npm install --save webpack-stats-duplicates

findDuplicates(json[, options]) => Array

Arguments

  1. json (Object): The stats json object from webpack
  2. options (Object [optional])
  3. options.whitelist (Array [optional]): An array of duplicate paths to ignore

Returns

Array: An array of found duplicates.

Example

import { findDuplicates } from 'webpack-stats-duplicates';

const duplicates = findDuplicates(json, {
  whitelist: [ '/node_modules/flux/node_modules/fbjs' ]
});

printDuplicates(duplicates)

Arguments

  1. duplicates (Array): The duplicates array from findDuplicates

loadConfig([filename], callback)

Arguments

  1. filename (String [optional]): The filename to load config from, if omitted, will attempt to load the default .wsdrc file
  2. callback (Function): Callback function that takes two arguments, error and config

Example

import { loadConfig } from 'webpack-stats-duplicates';

let findDuplicatesOpts = {};
loadConfig('./path/to/my/config.json', (error, config) => {
  if (error) {
    console.log(error);
    return;
  }
  findDuplicatesOpts = config;
});