hastests
v0.2.0
Published
Interface to the HasTests ConceptScript data generation API
Downloads
2
Readme
HasTests node.js library
Usage
ht = require('hastests');
ht.run('{email: email(domain='test.com')}.vector(10)', function(err, ret) {
if (err) {
console.log(err);
return;
}
ret.data.forEach(function(email) {
// use the randomly generated email
});
});