Viktor Turskyi
Viktor Turskyi
I've created a ChromeLogger plugin for Perl web framework Mojolicious - https://metacpan.org/module/Mojolicious::Plugin::ChromeLogger It will be nice to have this Perl module among list of server libraries on project's page.
Core members: @fuksito @asholok @Prots @erlangbureau @vlbaluk @maktwin @fperrad @k33nice @DanielHreben @pterolex Here are several ideas: 1. I am going to tests to core test suite for checking the correctness...
Here is an example of complex JSON Schema. To describe such schema in LIVR additional rules should be registered. Does it make sense to add some of them to the...
Code ```javascript import FastestValidator from 'fastest-validator'; const v = new FastestValidator(); const check = v.compile({ id: { type: 'number', max: 'console.log("ALERT")' } }); check({id:123}); ``` will print 'ALERT'. Ajv validator...