JSPM

@authenio/xsd-schema-validator

0.7.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5817
  • Score
    100M100P100Q138099F
  • License MIT

A (XSD) schema validator for nodejs

Package Exports

  • @authenio/xsd-schema-validator
  • @authenio/xsd-schema-validator/lib/validator.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@authenio/xsd-schema-validator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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