# rufio-filter-mustache

> A rufio filter for mustache templates

Latest version **1.0.0** (published 2016-03-27) · ISC license · 0 weekly downloads

## Install

```sh
npm install rufio-filter-mustache
pnpm add rufio-filter-mustache
yarn add rufio-filter-mustache
bun add rufio-filter-mustache
```

## 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.0 |
| Published | 2016-03-27 |
| First published | 2016-03-27 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Wes Todd |
| Maintainers | wesleytodd |
| Keywords | rufio, filter, stream, mustache |

## Links

- npm: https://www.npmjs.com/package/rufio-filter-mustache
- Repository: https://github.com/wesleytodd/rufio-filter-mustache
- Issues: https://github.com/wesleytodd/rufio-filter-mustache/issues
- npm.io page: https://npm.io/package/rufio-filter-mustache

## Dependencies (3)

- [mustache](https://npm.io/package/mustache.md) ^2.2.1
- [through2](https://npm.io/package/through2.md) ^2.0.1
- [pluralize](https://npm.io/package/pluralize.md) ^1.2.1

## Alternatives

- [byte-size](https://npm.io/package/byte-size.md) — 2.1M weekly downloads
- [speed-limiter](https://npm.io/package/speed-limiter.md) — 16.0K weekly downloads
- [@powersync/node](https://npm.io/package/@powersync/node.md) — 10.9K weekly downloads
- [@ledgerhq/coin-cardano](https://npm.io/package/@ledgerhq/coin-cardano.md) — 1.0K weekly downloads
- [@jayesol/jayeson.lib.streamfinder](https://npm.io/package/@jayesol/jayeson.lib.streamfinder.md) — 1.0K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2016-03-27

## README

# rufio-filter-mustache

[![NPM Version][npm-image]][npm-url]
[![NPM Downloads][downloads-image]][downloads-url]
[![Build Status](https://travis-ci.org/wesleytodd/rufio-filter-mustache.svg?branch=master)](https://travis-ci.org/wesleytodd/rufio-filter-mustache)
[![js-happiness-style](https://img.shields.io/badge/code%20style-happiness-brightgreen.svg)](https://github.com/JedWatson/happiness)

[npm-image]: https://img.shields.io/npm/v/rufio-filter-mustache.svg
[npm-url]: https://npmjs.org/package/rufio-filter-mustache
[downloads-image]: https://img.shields.io/npm/dm/rufio-filter-mustache.svg
[downloads-url]: https://npmjs.org/package/rufio-filter-mustache

## Install

```
$ npm install --save rufio-filter-mustache
```

## Usage

```javascript
var fs = require('fs');
var mustacheFilter = require('rufio-filter-mustache')();

// Pipe file content to the filter
fs.createReadStream('./file.md')
	.pipe(mustacheFilter())
	.on('data', function (c) {
		// `c` is the rendered mustache template as a buffer
		console.log(c.toString());
	});
```

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