Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@allnulled/async-circuit
Advanced tools
Permite pasar árboles de sync, serie, parallel y race a función asíncrona.
Permite pasar árboles de sync, serie, parallel y race a función asíncrona.
npm i -s @allnulled/async-circuit
En node.js:
require("@allnulled/async-circuit");
En html:
<script src="node_modules/@allnulled/async-circuit/async-circuit.js"></script>
La idea es poder escribir mapas de circuitos con tuberías que permitan los modos más típicos de asincronicidad que son serie, paralelo y carrera.
Se hace convirtiendo un mapa en un script que con AsyncFunction
pasamos de código a función.
Este mapa tiene unas condiciones especiales, donde:
function
, y object
con una propiedad $type
y un valor válido para ésta.function
son usadas como código fuente, por lo cual se usa toString()
, no valen funciones de código nativo.object
son usados como pivote para grupos funcionales asíncronos.
$type
es sync
es una lista de $callbacks
en síncrono$type
es serie
es una lista de $callbacks
en serie$type
es parallel
es una lista de $callbacks
en paralelo$type
es race
es una lista de $callbacks
en carreraSé que faltan muchas cosas, pero la API más básica sería esta, para mí.
El test es este:
// Ejemplo de uso:
const data = {};
const setData = function(obj = {}) {
Object.assign(data, obj);
};
const tree = {
$type: 'parallel',
$callbacks: [
{
$type: 'sync',
$callbacks: [
() => setData({ m1: 'Sync 1' }),
() => setData({ m2: 'Sync 2' })
]
},
{
$type: "race",
$callbacks: [
async () => {
setData({ m3: 'Async 1' });
return 'done 1';
},
async () => {
setData({ m4: 'Async 2' });
return 'done 2';
}
]
},
{
$type: 'serie',
$callbacks: [
async () => {
setData({ m5: 'Serie 1' });
return 'done 3';
},
async () => {
setData({ m6: 'Serie 2' });
return 'done 4';
}
]
},
]
};
const asyncCircuit = AsyncCircuit.create();
asyncCircuit.hook(function(node) {
console.log("Finished: ", node);
});
await asyncCircuit.execute(tree, { setData });
console.log('Todo listo!');
console.log(data);
if(!("m1" in data)) {
throw new Error("m1 not found");
}
FAQs
Permite pasar árboles de sync, serie, parallel y race a función asíncrona.
The npm package @allnulled/async-circuit receives a total of 4 weekly downloads. As such, @allnulled/async-circuit popularity was classified as not popular.
We found that @allnulled/async-circuit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.