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

directory-tree-webpack-plugin

v1.0.3

Published

Store a JSON mapping of a directory.

Downloads

1,439

Readme

NPM Version Standard Version

Directory Tree Plugin

This plugin allows you to generate a JSON representation of a directory and all its child nodes (files and folders). It uses the fantastic directory-tree package, which does the majority of the work although some additional options are provided (see below).

Install the plugin via NPM:

npm i --save-dev directory-tree-webpack-plugin

The latest version of the plugin is compatible with webpack v4+. To use this plugin with webpack v3, install v0.3.x:

npm i --save-dev [email protected]

Usage

This plugin is particularly useful when using dynamic import() statements as you can get a mapping of all the items in the import(...) location. For example, let's say we wanted to dynamically import() all *.md pages within a content directory:

project

demo
|- package.json
|- webpack.config.js
|- /src
  |- index.js
  |- /content
    |- index.md
    |- about.md
    |- contact.md

webpack.config.js

const Path = require('path')
const DirectoryTreePlugin = require('directory-tree-webpack-plugin')

module.exports = {
  entry: './src/index.js',
  plugins: [
    new DirectoryTreePlugin({
      dir: './src/content',
      path: './src/_content.json',
      extensions: /\.md/
    })
  ],
  module: {
    rules: [
      {
        test: /\.md/,
        use: [
          'html-loader',
          'markdown-loader'
        ]
      }
    ]
  },
  output: {
    path: Path.resolve(__dirname, 'dist'),
    filename: 'bundle.js'
  }
}

src/index.js

import ContentTree from './_content.json'

ContentTree.children.forEach(page => {
  import(`./content/${item.path}.md`)
    .then(body => {
      console.log('The page object can be used to generate routes, build navigations, and more...')
      console.log(page)
      console.log('The body string can be rendered when needed...')
      console.log(body)
    })
    .catch(error => console.error('Failed to load page!'))
})

Note that the example above uses promises and arrow functions. In a real app, you would likely polyfill these ES6+ features to ensure they work on older browsers.

Options

The following options can be passed to the plugin:

  • dir (string): A path to the directory that should be mapped.
  • path (string): The path to and filename of the JSON file to create.
  • enhance (func): A function to execute on every item in the tree (see below).
  • filter (func): A .filter callback run on each layer of children.
  • sort (func): A .sort callback run on each layer of children.

All the remaining options are passed to the directory-tree package. See that package's documentation for a listing of all available options.

Enhancing the Output

To customize each item in the tree, simply pass an enhance method. When this option is passed, the plugin will recurse through the tree calling it on every item. Here's a small example of how it can be used to change each item's path:

new DirectoryTreePlugin({
  dir: './src/content',
  path: './src/_content.json',
  extensions: /\.md/,
  enhance: (item, options) => {
    item.path = item.path.replace(options.dir, '')
  }
})

The first parameter given to the method is the item and the second, options, contains the same options object passed to the plugin. The enhance function makes changes to the item object directly. Note that this function MUST be deterministic, otherwise an infinite loop of tree generation will occur.