hxpipe
v0.0.6
Published
A partial reimplementation of hxpipe
Downloads
2
Readme
Introduction
This project is a partial clone of hxpipe from w3c's html-xml-utils, written in nodejs javascript. Eventually it should be a drop-in replacement for hxpipe.
Dependencies
Installation
npm install -g hxpipe
Running
haxpipe file.xml
haxpipe < file.xml
curl file.xml | haxpipe
Examples
var Hxpipe = require('hxpipe')
, fs = require('fs');
fs.createReadStream('file.xml')
.pipe(new Hxpipe())
.pipe(process.stdout);
License
MIT