# webpack-module-manifest-plugin

> Output manifest information about packaged modules.

Latest version **0.1.0** (published 2017-06-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install webpack-module-manifest-plugin
pnpm add webpack-module-manifest-plugin
yarn add webpack-module-manifest-plugin
bun add webpack-module-manifest-plugin
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2017-06-29 |
| First published | 2017-06-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Josh Duck |
| Maintainers | joshduck |

## Links

- npm: https://www.npmjs.com/package/webpack-module-manifest-plugin
- npm.io page: https://npm.io/package/webpack-module-manifest-plugin

## Recent versions

- 0.1.0 (latest) — 2017-06-29

## README

# Webpack Module Manifest Plugin

A Webpack plugin for generating a manifest with bundle filenames and module metadata for output.

That's it!

## Usage

In `webpack.config.js`

```json
const ManifestPlugin = require("webpack-module-manifest-plugin");

module.exports = {
  entry: "./src/index.js",
  plugins: [
    new ManifestPlugin({
      filename: "./build/client.manifest.json"
    })
  ]
}
```

This will generate a file that contains JSON data about your build.

```json
{
  "0.index.js": [
    {
      "name": "./src/components/c.js",
      "id": 87
    }
  ],
  "index.js": [
    {
      "name": "./node_modules/process/browser.js",
      "id": 0
    },
    {
      "name": "./node_modules/fbjs/lib/invariant.js",
      "id": 1
    },
  ]
}
```

## Options

* `filename` The filename to write the JSON data to.

---
_Source: https://npm.io/package/webpack-module-manifest-plugin · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
