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-ver-plugin

v0.0.2

Published

Generates a file with your app's package.json information and build date

Downloads

5

Readme

Webpack Version File Plugin

Plugin for Webpack which allows you to generate a static version file that can be deployed. Inspired by morficus/version-file

Use case

This plugin can be used to automatically let Webpack generate a file containing version information, based on the information in your NPM package.json.

Can be used to let your webapp detect when a new version is available.

Sample outfile file content

{
	"version" : {
		"name": "My AngularJS App",
		"buildDate": "Mon Nov 23 2015 14:26:25 GMT+0100 (CET)",
		"version": "5.37.0"
	}
}

Available config options:

  • outputFile: the path and filename of where to store the output
  • template: path to your template
  • templateString: an EJS template string
  • packageFile: path to your package.json.
  • extras: {}: an object for any extra information you want to use in your template

Templating

This modules uses EJS as its templating system. As indicated in the config options section, you can utilize your own template by either (a) passing in a path to an external file or (b) typing the template in-line.

The available options are:

  • package: contains all keys of your package.json
  • buildDate: a human-readable time stamp
  • extras: an object containing any custom / additional data that is needed in the template

Sample Webpack Configuration:

var path = require('path'),
    webpack = require("webpack"),
    libPath = path.join(__dirname, 'src'),
    wwwPath = path.join(__dirname, 'www'),
    pkg = require('./package.json'),
    HtmlWebpackPlugin = require('html-webpack-plugin'),
	VersionFile = require('webpack-version-file-plugin'),




module.exports = {
    entry: path.join(libPath, 'index.js'),
    output: {
        path: path.join(wwwPath),
        filename: 'bundle-[hash:6].js'
    },
    module: {
        loaders: [
			{
	            test: /\.html$/,
	            loader: 'file?name=templates/[name]-[hash:6].html'
	        }, {
	            test: /\.(png|jpg)$/,
	            loader: 'file?name=img/[name].[ext]'
	        }, {
	            test: /\.css$/,
	            loader: "style!css"
	        }
		]
    },
    resolve: {
        root: [path.join(__dirname, "src/libs")]
    },
    plugins: [
        new HtmlWebpackPlugin({
            filename: 'index.html',
            pkg: pkg,
            template: path.join(libPath, 'index.html')
        }),
		new VersionFile({
			packageFile:path.join(__dirname, 'package.json'),
			template: path.join(__dirname, 'version.ejs'),
			outputFile: path.join(wwwPath, 'version.json')
		})
	],
    externals: {
    }
};

Sample NPM Configuration:

Adding a script which will automatically update the version before building.

{
  "name": "My AngularJS App",
  "version": "17.1.0",
  "description": "App descriptions",
  "author": "...",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "build": "npm version minor && rm -rf www/* && webpack",
    "devserver": "webpack-dev-server --port 9100 --progress --colors --no-minimize"
  }
  ... etc
}  

Usage npm run-script build