Javascript object constructors and sample data based on Joi schema.
Felicity supports Joi schema management by providing 2 primary functions:
.validate()
method that will run Joi validation of the object instance values against the referenced Joi schema.Lead Maintainer: Wes Tyler
fe·lic·i·ty noun intense happiness; the ability to find appropriate expression for one’s thoughts or intentions.
Felicity provides object instances, or expressions, of the data intentions represented by Joi schema.
Felicity builds upon Joi by allowing validation to be contained cleanly and nicely in constructors while also allowing easy example generation for documentation, tests, and more.
npm install felicity
Given a joi schema, create an object Constructor and instantiate skeleton objects:
const Joi = require('joi');
const Felicity = require('felicity');
const joiSchema = Joi.object().keys({
key1: Joi.string().required(),
key2: Joi.array().items(Joi.string().guid()).min(3).required(),
key3: Joi.object().keys({
innerKey: Joi.number()
})
});
const FelicityModelConstructor = Felicity.entityFor(joiSchema);
const modelInstance = new FelicityModelConstructor({ key1: 'some value' });
console.log(modelInstance);
/*
{
key1: 'some value',
key2: [],
key3: {
innerKey: 0
}
}
*/
These model instances can self-validate against the schema they were built upon:
modelInstance.key3.innerKey = 42;
const validationResult = modelInstance.validate(); // uses immutable copy of the Joi schema provided to `Felicity.entityFor()` above
console.log(validationResult);
/*
{
success: false,
errors : [
{
"message": "\"key2\" must contain at least 3 items",
"path": [ "key2" ],
"type": "array.min",
"context": {
"limit": 3,
"value": [],
"key": "key2",
"label": "key2"
}
},
// ...
]
}
*/
Additionally, Felicity can be used to randomly generate valid examples from either your Felicity Models or directly from a Joi schema:
const randomModelValue = FelicityModelConstructor.example(); // built in by `Felicity.entityFor()`
/*
{
key1: '2iwf8af2v4n',
key2:[
'077750a4-6e6d-4b74-84e2-cd34de80e95b',
'1a8eb515-72f6-4007-aa73-a33cd4c9accb',
'c9939d71-0790-417a-b615-6448ca95c30b'
],
key3: { innerKey: 3.8538257114788257 }
}
*/
// directly from Joi schemas:
const stringSchema = Joi.string().pattern(/[a-c]{3}-[d-f]{3}-[0-9]{4}/);
const sampleString = Felicity.example(stringSchema);
// sampleString === 'caa-eff-5144'
const objectSchema = Joi.object().keys({
id : Joi.string().guid(),
username: Joi.string().min(6).alphanum(),
numbers : Joi.array().items(Joi.number().min(1))
});
const sampleObject = Felicity.example(objectSchema);
/*
sampleObject
{
id: '0e740417-1708-4035-a495-6bccce560583',
username: '4dKp2lHj',
numbers: [ 1.0849635479971766 ]
}
*/
Please note that Felicity follows Node.js LTS support schedules as well as Joi Node.js version support.
Beginning with [email protected], only Node.js versions 12 and above will be supported.
For full usage documentation, see the API Reference.
We love community and contributions! Please check out our guidelines before making any PRs.
Getting yourself setup and bootstrapped is easy. Use the following commands after you clone down.
npm install && npm test
Some Joi schema options are not yet fully supported. Most unsupported features should not cause errors, but may be disregarded by Felicity or may result in behavior other than that documented in the Joi api.
A feature is considered Felicity-supported when it is explicitly covered in tests on both entityFor
(and associated instance methods) and example
.
ref
unique
requiredKeys
optionalKeys