# @file-services/webpack

> Helpers for creation of webpack-compatible file systems.

Latest version **5.7.1** (published 2021-12-27) · MIT license · 0 weekly downloads

## Install

```sh
npm install @file-services/webpack
pnpm add @file-services/webpack
yarn add @file-services/webpack
bun add @file-services/webpack
```

## Health

**Score 40/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 5.7.1 |
| Published | 2021-12-27 |
| First published | 2019-03-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 8.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 18 |
| Maintainers | avi.vahl, pistolpete_, tomermes, cijoe |

## Links

- npm: https://www.npmjs.com/package/@file-services/webpack
- Repository: https://github.com/wixplosives/file-services.git#master
- Homepage: https://github.com/wixplosives/file-services
- Issues: https://github.com/wixplosives/file-services/issues
- npm.io page: https://npm.io/package/@file-services/webpack

## Dependencies (1)

- [@file-services/types](https://npm.io/package/@file-services/types.md) ^5.7.1

## Recent versions

- 5.7.1 (latest) — 2021-12-27
- 5.7.0 — 2021-12-27
- 5.4.3 — 2021-11-08
- 5.4.0 — 2021-08-29
- 5.3.1 — 2021-02-22
- 5.3.0 — 2020-12-23
- 5.2.1 — 2020-12-21
- 5.2.0 — 2020-12-09
- 5.1.0 — 2020-11-30
- 5.0.0 — 2020-11-22
- 4.1.0 — 2020-09-23
- 4.0.0 — 2020-09-08
- 3.1.1 — 2020-07-26
- 3.1.0 — 2020-07-25
- 3.0.0 — 2020-07-12
- … 11 more at https://npm.io/package/@file-services/webpack/versions

## README

# @file-services/webpack

[![npm version](https://img.shields.io/npm/v/@file-services/webpack.svg)](https://www.npmjs.com/package/@file-services/webpack)

Helpers for creation of webpack-compatible file systems.

## Installation

Install library in project:

```sh
npm i @file-services/webpack
```

## Usage

```ts
import webpack from 'webpack';
import { nodeFs } from '@file-services/node';
import { createWebpackFs } from '@file-services/webpack';

const compiler = webpack({
  /* webpack config */
});

const webpackFs = createWebpackFs(nodeFs);
compiler.inputFileSystem = webpackFs;
compiler.outputFileSystem = webpackFs;

compiler.run((e, stats) => {
  /* handle bundling result */
});
```

## License

MIT

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