JSON Schema Validator

const ajv = ((Ajv) => new Ajv())(require("ajv"));
const configValidator = ajv.compile(require("../validators/config.validator"));
 
// configuration preprocess and checking
const config = {db:{url:"mysql://server/table"}};
if (!configValidator(config)) throw configValidator.errors;

Полезные ссылки

  • works/programmer/js/schema-validator.txt
  • Последнее изменение: 2021/07/02 16:57
  • 127.0.0.1