# superloader

> Universal loader for webpack

Latest version **0.7.0** (published 2021-09-23) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install superloader
pnpm add superloader
yarn add superloader
bun add superloader
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.7.0 |
| Published | 2021-09-23 |
| First published | 2016-01-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Brandon Carl |
| Maintainers | brandoncarl |
| Keywords | webpack, loaders |

## Links

- npm: https://www.npmjs.com/package/superloader
- Repository: https://github.com/brandoncarl/superloader
- Homepage: https://github.com/brandoncarl/superloader#readme
- Issues: https://github.com/brandoncarl/superloader/issues
- npm.io page: https://npm.io/package/superloader

## Dependencies (1)

- [pipemaker](https://npm.io/package/pipemaker.md) 0.7.0

## Alternatives

- [raw-loader](https://npm.io/package/raw-loader.md) — 4.3M weekly downloads
- [plop](https://npm.io/package/plop.md) — 1.4M weekly downloads
- [webpack-deadcode-plugin](https://npm.io/package/webpack-deadcode-plugin.md) — 80.3K weekly downloads
- [@storybook/preact-vite](https://npm.io/package/@storybook/preact-vite.md) — 54.2K weekly downloads
- [vite-plugin-transform](https://npm.io/package/vite-plugin-transform.md) — 2.4K weekly downloads

## Recent versions

- 0.7.0 (latest) — 2021-09-23
- 0.6.0 — 2016-11-28
- 0.5.0 — 2016-04-20
- 0.4.1 — 2016-03-19
- 0.4.0 — 2016-03-19
- 0.3.9 — 2016-03-01
- 0.3.8 — 2016-02-29
- 0.3.7 — 2016-02-28
- 0.3.6 — 2016-02-27
- 0.3.5 — 2016-02-27
- 0.3.4 — 2016-02-27
- 0.3.3 — 2016-02-27
- 0.3.2 — 2016-02-27
- 0.3.1 — 2016-02-27
- 0.3.0 — 2016-02-26
- … 7 more at https://npm.io/package/superloader/versions

## README

# Superloader

A universal loader for webpack with hot module loading. Based on
[Pipemaker](http://github.com/brandoncarl/pipemaker) engine.


## Installation

```
$ npm install superloader
```

## Examples

```js

var Superloader = require("superloader");

// Add engines
Supertransform.pipelines.addPipeline("ts");
Supertransform.pipelines.addPipeline("coffee");
Supertransform.pipelines.addPipeline("jbs", "jade>handlebars");

// Example webpack loader
{
  entry      : "entry.js",
  output     : {
    filename : "out.js"
  },
  module     : {
    loaders  : [ { test: /.+/, loader: "superloader" } ]
  },
  resolve    : { extensions: ["", ".js", ".ts", ".coffee"] }
}
```


## License
MIT

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