@authenio/xsd-schema-validator

0.7.3 • Public • Published

xsd-schema-validator

Build Status

A (XSD) schema validator for NodeJS that uses Java to perform the actual validation.

Prerequisites

This utility assumes that javac and java are on the path or that the JAVA_HOME environment exists and points to an installed JDK.

On some platforms, i.e. Mac OSX you need to define JAVA_HOME manually.

How to Use

Install via npm:

npm install --save xsd-schema-validator

Use in your application:

var validator = require('xsd-schema-validator');

var xmlStr = '<foo:bar />';

validator.validateXML(xmlStr, 'resources/foo.xsd', function(err, result) {
  if (err) {
    throw err;
  }

  result.valid; // true
});

You may validate readable streams, too:

var xmlStream = fs.createReadableStream('some.xml');

validator.validateXML(xmlStream, ...);

...and files, too:

validator.validateXML({ file: 'some.xml' }, ...);

Why

Because Java can do schema validation and NodeJS cannot.

License

MIT

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i @authenio/xsd-schema-validator

    Weekly Downloads

    3,942

    Version

    0.7.3

    License

    MIT

    Unpacked Size

    93.5 kB

    Total Files

    23

    Last publish

    Collaborators

    • tngan