Инструменты пользователя

Инструменты сайта


works:programmer:js:schema-validator

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

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki