# gulp-saxon

> xslt by saxon plugin for gulp

Latest version **0.0.3** (published 2014-05-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install gulp-saxon
pnpm add gulp-saxon
yarn add gulp-saxon
bun add gulp-saxon
```

## 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.0.3 |
| Published | 2014-05-02 |
| First published | 2014-05-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | nbqx |
| Maintainers | nbqx |
| Keywords | gulpplugin, gulp, saxon, xslt |

## Links

- npm: https://www.npmjs.com/package/gulp-saxon
- Repository: https://github.com/nbqx/gulp-saxon
- Issues: https://github.com/nbqx/gulp-saxon/issues
- npm.io page: https://npm.io/package/gulp-saxon

## Dependencies (4)

- [through2](https://npm.io/package/through2.md) ^0.4.1
- [gulp-util](https://npm.io/package/gulp-util.md) ^2.2.14
- [underscore](https://npm.io/package/underscore.md) ^1.6.0
- [saxon-stream2](https://npm.io/package/saxon-stream2.md) 0.0.1

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 0.0.3 (latest) — 2014-05-02
- 0.0.2 — 2014-05-02
- 0.0.1 — 2014-05-02

## README

## gulp-saxon

xslt by saxon plugin for gulp

## Install

    npm install gulp-saxon

## Usage

```js
var fs = require('fs'),
    gulp = require('gulp');

var saxon = require('gulp-saxon');

gulp.task('run',function(){
  var xml = [__dirname,'test.xml'].join('/');
  var out = [__dirname,'out'].join('/');

  return gulp.src(xml).pipe(saxon({
    jarPath: [__dirname,'vendor','saxon9he.jar'].join('/'),
    xslPath: [__dirname,'xsl','test.xsl'].join('/'),
    outputType: '.txt',
    timeout: 5000
  })).pipe(gulp.dest(out))
});
```

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