
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
joi-generate
Advanced tools
Generates sample data from Joi schema.
NOTE: This is absolutely not a complete or really working solution, i'm just implementing bits and bobs as I require them. Feel free to contribute handlers for other types.
Currently implemented:
Array
✓ should generate an array
✓ should handle arrays with multiple objects
Boolean
✓ should generate a boolean value
Date
✓ should generate a date value
✓ should handle custom date formats
✓ should handle custom iso formats
Number
✓ should generate a random number
✓ should be able to specify a minimum length
✓ should be able to specify a maximum length
✓ should be able to specify a minimum and maximum length
Object
✓ should generate an object
Any
✓ should generate an empty object
String
✓ should generate a random string
✓ strings should be able to specify a minimum length
✓ strings should be able to specify a maximum length
✓ strings should be able to specify a minimum and maximum length
✓ should be able to generate an email
✓ should be able to generate a guid
✓ should be able to generate an ip
✓ should be able to generate a hostname
Binary
✓ should generate a binary buffer
✓ should be able to specify a minimum length
✓ should be able to specify a maximum length
✓ should be able to specify a length
Install the module with: npm install joi-generate
var Joi = require('joi');
var generate = new require('joi-generate').Generate();
var schema = Joi.object({
details: Joi.string().min(100).max(200)
});
generate(schema, function(err, model) {
/*
* model = { details: 'some random string between 100 and 200 chars' }
*/
});
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Copyright (c) 2015 Hewlett-Packard. Licensed under the MIT license.
FAQs
Generates sample data from Joi schema
The npm package joi-generate receives a total of 16 weekly downloads. As such, joi-generate popularity was classified as not popular.
We found that joi-generate demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.