Mollitia
is a JavaScript Resilience library that works on Node and on browsers.
The purpose of such kind of tool is to help organize asynchronous operations under a highly customizable circuit that helps managing error use cases.
When everything is falling apart, it stops the classic flow and uses modules to manage failures.
Full documentation website can be find here.
# Install the dependency
npm install mollitia --save
// Javascript
const { Circuit } = require('mollitia');
// ES6 or TypeScript
import { Circuit } from 'mollitia';
<!-- CDN -->
<script type="text/javascript" src="https://unpkg.com/mollitia"></script>
<script>
const { Circuit } = window.Mollitia;
</script>
// Imports the library
const { Circuit } = require('mollitia');
// Creates a circuit
const myCircuit = new Circuit();
// fn(yourFunction) - execute(yourParams...)
await circuit.fn(yourFunction).execute('dummy');
The point of Mollitia
is to get every Resilience patterns into one library.
It is very similar at what does Resilience4j on Java, but on Node.
- Works on Node and on browser (even Internet Explorer 11, wow).
- Implements a wide variety of Resilience patterns.
- Has Method Agnostic circuits, meaning you don't have to create one circuit per function.
- Supports addons.
- cockatiel
- Misses the Cache and Ratelimit modules.
- Cannot create module or addons.
- opossum
- Only support the Circuit Breaker module
- Cannot have Method Agnostic circuits.
- Cannot create module or addons.
- brakes
- Only support the Circuit Breaker module
- Cannot have Method Agnostic circuits.
- Cannot create module or addons.
- MIT license
- Copyright 2021 © Genesys.