# jext-loader

> JEXT loader for webpack

Latest version **1.0.4** (published 2016-01-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install jext-loader
pnpm add jext-loader
yarn add jext-loader
bun add jext-loader
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2016-01-06 |
| First published | 2015-11-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dmitry Kuzmenkov |
| Maintainers | dmitrykuzmenkov |
| Keywords | webpack, jext, loader |

## Links

- npm: https://www.npmjs.com/package/jext-loader
- Repository: https://github.com/dmitrykuzmenkov/jext-loader
- Homepage: https://github.com/dmitrykuzmenkov/jext-loader#readme
- Issues: https://github.com/dmitrykuzmenkov/jext-loader/issues
- npm.io page: https://npm.io/package/jext-loader

## Recent versions

- 1.0.4 (latest) — 2016-01-06
- 1.0.3 — 2015-11-21
- 1.0.2 — 2015-11-19
- 1.0.1 — 2015-11-19
- 1.0.0 — 2015-11-19

## README

JEXT webpack loader
======

## Webpack config example

```
{
  ...
  module: {
    loaders: [
      ...
      { test: /\.jext/, loader: "jext" }
    ]
  }
}
```

## Simple usage

```javascript
var jext = require('jext');
var template = require('example.jext');
var pool = jext.pool(template);

var example = pool.get('example');
document.body.appendChild(example.dom());
example.update({param: 'value'});
```

## More info
See JEXT github page: https://github.com/dmitrykuzmenkov/jext

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