# @handledom/in-template-string-loader

> A webpack loader that compiles Handledom templates in template strings at build time.

Latest version **0.1.9** (published 2020-07-18) · CC0-1.0 license · 0 weekly downloads

## Install

```sh
npm install @handledom/in-template-string-loader
pnpm add @handledom/in-template-string-loader
yarn add @handledom/in-template-string-loader
bun add @handledom/in-template-string-loader
```

## 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.9 |
| Published | 2020-07-18 |
| First published | 2020-01-18 |
| Weekly downloads | 0 |
| License | CC0-1.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 12 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Paroi |
| Maintainers | paleo |
| Keywords | handledom, template, string, webpack, loader |

## Links

- npm: https://www.npmjs.com/package/@handledom/in-template-string-loader
- Repository: https://github.com/paroi-tech/handledom
- Homepage: https://github.com/paroi-tech/handledom/tree/master/in-template-string-loader
- Issues: https://github.com/paroi-tech/handledom/issues
- npm.io page: https://npm.io/package/@handledom/in-template-string-loader

## Dependencies (1)

- [loader-utils](https://npm.io/package/loader-utils.md) ^2.0.0

## Alternatives

- [@mce/gif](https://npm.io/package/@mce/gif.md) — 2.6K weekly downloads
- [cleanse](https://npm.io/package/cleanse.md) — 173 weekly downloads
- [str](https://npm.io/package/str.md) — 127 weekly downloads
- [naming](https://npm.io/package/naming.md) — 95 weekly downloads
- [tap-telco-api](https://npm.io/package/tap-telco-api.md) — 19 weekly downloads

## Recent versions

- 0.1.9 (latest) — 2020-07-18
- 0.1.8 — 2020-07-18
- 0.1.7 — 2020-07-04
- 0.1.6 — 2020-06-17
- 0.1.5 — 2020-06-17
- 0.1.4 — 2020-06-17
- 0.1.3 — 2020-06-17
- 0.1.2 — 2020-06-17
- 0.1.1 — 2020-06-17
- 0.1.0 — 2020-06-17
- 0.0.3 — 2020-01-20
- 0.0.2 — 2020-01-20
- 0.0.1 — 2020-01-18

## README

# @handledom/in-template-string-loader

[![Build Status](https://travis-ci.com/paroi-tech/handledom.svg?branch=master)](https://travis-ci.com/paroi-tech/handledom)
[![npm](https://img.shields.io/npm/dm/handledom)](https://www.npmjs.com/package/@handledom/in-template-string-loader)
[![GitHub](https://img.shields.io/github/license/paroi-tech/handledom)](https://github.com/paroi-tech/handledom)

A webpack loader that compiles Handledom templates in template strings at build time.

## How to use

First, add `@handledom/in-template-string-loader` to a webpack config file:

```sh
npm install @handledom/in-template-string-loader --save-dev
```

In the `webpack.config.js` file, add this rule:

```js
module.exports = {
  // …
  module: {
    rules: [
      {
        test: /\.(js|ts)$/,
        exclude: /node_modules/,
        use: "@handledom/in-template-string-loader"
      },
    ]
  }
};
```

## Contribute

With VS Code, our recommanded plugin is:

- **ESLint** - `dbaeumer.vscode-eslint`
- **Prettier** - `esbenp.prettier-vscode`

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