
Security News
CISA Extends MITRE Contract as Crisis Accelerates Alternative CVE Coordination Efforts
CISA extended MITRE’s CVE contract by 11 months, avoiding a shutdown but leaving long-term governance and coordination issues unresolved.
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
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
CISA extended MITRE’s CVE contract by 11 months, avoiding a shutdown but leaving long-term governance and coordination issues unresolved.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.