
Product
Announcing Bun and vlt Support in Socket
Bringing supply chain security to the next generation of JavaScript package managers
@ovotech/blaise
Advanced tools
An API to generate mock payloads for @ovotech/castle using @ovotech/avro-mock-generator
An API to generate mock payloads for @ovotech/castle using @ovotech/avro-mock-generator
blaise() is mostly just a chainable deepMerge, with utilities to generate messages and payloads once everything is configured.
Calling blaise() returns a new version of blaise, preloaded with the provided defaults, without mutating the parent.
import blaise from '@ovotech/blaise';
const withAvro = blaise({ avro: { schema } });
const coffee = withAvro({ avro: { pickUnion: ['coffee'] } });
const tea = withAvro({ avro: { pickUnion: ['tea'] } });
coffee.getDefault(); // { avro: { schema, pickUnion: ['coffee']}}
tea.getDefault(); // { avro: { schema, pickUnion: ['tea']}}
import blaise from '@ovotech/blaise';
const schema: avsc.RecordType = {
type: 'record',
name: '',
fields: [{ name: 'anInt', type: 'int' }],
};
type MyType = { anInt: number };
blaise<MyType>({ avro: { schema } }).message(); // {topic: '', {anInt: 32}, [...]}
You can also override the message, either as part of the default or when calling the function
import blaise from '@ovotech/blaise';
const schema: avsc.RecordType = {
// [...]
};
const brewCoffee = blaise({
avro: { schema },
message: { value: { type: 'coffee' } },
});
brewCoffee.message({ value: { with: 'milk' } }); // {offset: 13, value {type: 'coffee', with: 'milk'}, [...]}
CastleEachMessagePayloadimport blaise from '@ovotech/blaise'
const schema: avsc.RecordType = {
// [...]
};
blaise({ avro: { schema }).eachMessage(); // { topic: 'aTopic', value: {} [...]}
CastleEachBatchPayloadimport blaise from '@ovotech/blaise'
const schema: avsc.RecordType = {
// [...]
};
const makeMessage = blaise({ avro: { schema })
blaise.eachBatch([makeMessage()]); // {batch: { topic: 'aTopic', value: {} }[...]}
Make use of the seed options to use a deterministic random generator instead of true randomness.
Each call to .defaults() or .seed() with a seed will reset the randomness.
You can run the tests with:
yarn test
Style is maintained with prettier and eslint
yarn lint
Deployment is preferment by lerna automatically on merge / push to main, but you'll need to bump the package version numbers yourself. Only updated packages with newer versions will be pushed to the npm registry.
Have a bug? File an issue with a simple example that reproduces this so we can take a look & confirm.
Want to make a change? Submit a PR, explain why it's useful, and make sure you've updated the docs (this file) and the tests.
This project is licensed under Apache 2 - see the LICENSE file for details
It's just a fun pun. Take a Castle, make a 'mock' version of it, and you get Bristol's Blaise Castle
FAQs
An API to generate mock payloads for @ovotech/castle using @ovotech/avro-mock-generator
The npm package @ovotech/blaise receives a total of 17 weekly downloads. As such, @ovotech/blaise popularity was classified as not popular.
We found that @ovotech/blaise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 355 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.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.