JSPM

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

A (XSD) schema validator for nodejs

Package Exports

  • xsd-schema-validator

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 (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

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

Why

Because Java can do schema validation and NodeJS cannot.

License

MIT