Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 881 Bytes

README.md

File metadata and controls

53 lines (31 loc) · 881 Bytes

xsd-schema-validator

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

Prerequisites

Declare a JAVA_HOME environment variable that points to an installed JDK.

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
});

or using a file as input:

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

validator.validateXML( {file: 'path/to/xml/file'}, 'resources/foo.xsd', function(err, result) {
  //...
});

Why

Because Java can do schema validation and NodeJS cannot.

License

MIT