Giter Site home page Giter Site logo

node-xsltproc's Introduction

node-xsltproc

Build Status

Getting started

First install xsltproc. If not already installed on your system, read installing an XSLT processor.

Install the module with: npm install node-xsltproc --save

Options

xsltproc options

  • xsltproc_path : specify the path for xsltproc

transform options

  • debug : add extra verbose message (default: false)
  • stringparams : add stringparam (default: {})
  • metadata : whether metadata should be parsed from xsltproc output (default: true)

Exemples

using an optional path for xsltproc

const xsltproc = require('node-xsltproc');

xsltproc({xsltproc_path: '/home/user/local/bin'}).transform('test/fixtures/page.xml').then((data) => {
	console.log('metadata', data.metadata);
	console.log('output', data.result);
});
metadata { message: '',
  functions:
   [ { id: 0,
       fctName: 'page',
       count: 1,
       total: 5,
       avg_100us: 5,
       source: 'page.xsl',
       line: 5 } ],
  includes: [ 'page.xml', 'variables.dtd', 'page.xsl', 'menu.xsl' ] }
output <h1>My</h1> <h2>page content</h2>

using stylesheet+xml files

const xsltproc = require('node-xsltproc');

xsltproc().transform(['test/fixtures/menu.xsl', 'test/fixtures/menu.xml']).then((data) => {
	console.log(data.metadata);
	console.log(data.result);
});

using stringparam

const xsltproc = require('node-xsltproc');

xsltproc().transform('test/fixtures/params.xml'), {stringparams: {n: '42'}}).then((data) => {
  console.log(data.metadata);
  console.log(data.result);
});

node-xsltproc's People

Contributors

ticapix avatar junker avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.