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 🙏

© 2025 – Pkg Stats / Ryan Hefner

rollup-plugin-build-statistics

v0.0.19

Published

Rollup plugin for collecting statistics about your builds

Downloads

565

Readme

Rollup build statistics plugin

Plugin that keeps a continuous log of your build time.

Use cases

  • Can be used as an evidence to show the business (PO's etc.) how slow build times impact the team and hinder productivity
  • By monitoring build time you can see if the optimizations in your Rollup config have really improved productivity
  • This plugin can help you to point out the differences between different machines e.g. if one of the developers has really slower builds than other it can be a sign of misconfiguration, poor hardware etc.

Installation and setup

To install the plugin run:

npm install --save-dev rollup-plugin-build-statistics

Add the plugin to your rollup.config.js and specify a project name.

import buildStatistics from 'rollup-plugin-build-statistics';

export default {
    input: `./src/index.js`,
    output: {
        file: `dist/index.js`,
    },
    plugins: [
        buildStatistics({
            projectName: 'awesome-project',
        }),
    ],
};

You are all set! 🚀

Now every time you make some changes the build time will be logged.

All logs will be summarized on daily basis and you can find the data under stats/build-summary.json file.

NOTE: You should probably gitignore the stats folder and all json files inside.

Logs analysis 📊

After a while you have collected some data and you are probably wondering how to process it and extract insights.

We've got you covered! Head over to our logs analyzer page and upload your build-summary.json file.

You can use this tool to visualize your build time and see the progress.

Did you find this plugin useful?

Show your support. Buy me a coffee. 😎

Plugin options

This plugin is configurable and supports a few options.

| Option name | Required | Default value | Description | |:-------------:|:-------------:|:-----:|:-------------| | projectName | Yes | N/A | Name of your project. It will be saved in the log file. Useful when you have multiple projects. | | logsDirectoryName | No | stats | Name of the directory where log files will be stored. | | summaryLogFilename | No | build-stats-summary | Name of the json log file. |

Read more about the inspiration for this plugin.