
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
alinex-validator
Advanced tools
Data validator with additional sanitize of simple and complex values used as schema validation for any imported data structure.
The ultimate validation library for javascript!
This module will help validating complex structures. And should be used on all external information. Like configuration or user input. It's strength are very complex structures but as easily it works with simple things. It's the best validator ever, see the comparison with others later.
The core builds a schema which is build as combination of different type instances from the schema classes. This schema builder mechanism allows to setup complex structures with optimizations and logical validation. It can be build step by step, cloned and redefined...
With such a schema you can directly validate your data structure or use it to load and validate data structure or to transform them into optimized JSON data files using the command line interface. A schema can also describe itself human readable for users to describe what is needed. If some value failed an error message is given with reference to the original value and the description what failed and what is needed.
This library can help you make your life secure and easy but you should have to define your data structure deeply, before. If you do so you can trust and use the values as they are without further checks. And you'll get the benefit of automatically optimized values and easy to use configuration files back.
You may also split up complex configuration files for any system into multiple files which are combined together by the validator after each change.
Read the complete documentation under https://alinex.gitbooks.io/validator
Install to use as module:
npm install alinex-validator
or install it globally:
npm install -g alinex-validator
Now you can define your schema specification like:
// config.schema.js
// @flow
import * as val from 'alinex-validator/dist/builder'
const schema = new val.Object()
.key('title', new val.String().allow(['Dr.', 'Prof.']))
.key('name', new val.String().min(3).required())
.key('street', new val.String().min(3).required())
.key('plz', new val.Number().required()
.positive().max(99999)
.format('00000'))
.key('city', new val.String().required().min(3))
module.exports = schema
import validator from 'alinex-validator'
import schema from './config.schema.js'
validator.searchApp('myApp') // search in /etc/myApp or ~/.myApp
const data = validator.load('config/**/*.yml')
schema.validate(data)
.then((data) => {
console.log(data)
})
.catch((err) => {
console.error(err.text())
})
Transform into an optimized JSON structure:
validator -i *.yml -s schema.js -o config.json
This will load all *.yml files in the current directory, validate it through the given schema and store the resulting data structure to a JSON file.
This can be used to validate and optimize a configuration before using them. If you want to use this in JavaScript you can use:
import config from './config.json'
Read more in the complete manual...
V3.0.1 Bug fixes: file.exists, CLI calls
V3.0.0 Complete rewrite with class structure
(C) Copyright 2014-2017 Alexander Schilling
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
Data validator with additional sanitize of simple and complex values used as schema validation for any imported data structure.
The npm package alinex-validator receives a total of 11 weekly downloads. As such, alinex-validator popularity was classified as not popular.
We found that alinex-validator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.