0.0.3 • Published 5 years ago
node-algebraic-effects v0.0.3
node algebraic effects
This library is heavily inspired by this article & this proposal.
This library is only compatible with node >v12.17.x as it relies on AsyncLocalStorage.
API
The library exposes 2 functions:
perform, which takes 1 or more arguments. It can only be called inside of a function wrapped by handle
effect- astringrepresenting the effect to be handled by theeffectHandler(see below)...rest- any additional arguments passed down to theeffectHandler
and returns the value resolved by the effectHandler
handle, which takes 2 arguments:
task- a function that will be immediately called. It can callperform, which will be handled by theeffectHandler- it can be either an object or a functionobject- an object whose keys are effect names (passed toperform) and values are functions, that take any extra arguments passed toperform. The return value is passed back to thetask. Ifperformis called with an unknown key, an error will be thrown.function- a function, which is passed 2 or more arguments:resume- an async function, which must be called once in an async flow. The return value will resolve (or reject) once thetaskresolves (or rejects)effect- the effect name passed toperform...rest- additional arguments passed toperform
and returns the same value as task
Examples
Basic:
const wait = (n) => Promise((resolve) => setTimeout(resolve, n));
handle(
async () => {
const n = await perform("get2");
const result = await perform("makeHeavyComputations", n, n);
await perform("log", result);
},
{
log: console.log,
get2: () => 2,
makeHeavyComputations: async (a, b) => {
await wait(1000);
return a + b;
},
}
);
// logs 2 to the consoleAdvanced:
const performWithFile = async fileLocaton => {
const fileHandle = await perform('get_file', fileLocation)
const contents = await perform('read_file', fileHandle)
const result = await perform('compute', contents)
return result
}
// file in the local fs
const result = await handle(
() => performWithFile('file_path'),
async (resume, effect, ...args) => {
switch(effect) {
case 'get_file':
const handle = await createFileReadStream(args[0])
try {
await resume(handle)
} finally {
// remember to close the unused file
await closeFile(handle)
}
break
case 'read_file':
const fileContents = await readFileContents(args[0])
resume(fileContents)
break
case 'compute':
const result = await computeResults(args[0])
resume(result)
break
}
})
// file on the web, no need to close after:
const result = await handle(() => performWithFile('url'), {
get_file: fetch,
read_file: response => response.json()
compute: computeResults
})The compute from the above example is the same, so we can partially handle the computation:
const performComputationWithFile = fileLocation => () =>
handle(() => performWithFile(fileLocatiion), {
compute: computeResults,
}));
// file in the local fs
const result = await handle(
() => performComputationWithFile("file_path"),
async (resume, effect, ...args) => {
switch (effect) {
case "get_file":
const handle = await createFileReadStream(args[0]);
try {
await resume(handle);
} finally {
// remember to close the unused file
await closeFile(handle);
}
break;
case "read_file":
const fileContents = await readFileContents(args[0]);
resume(fileContents);
break;
}
}
);
// file on the web, no need to close after:
const result = await handle(() => performComputationWithFile("url"), {
get_file: fetch,
read_file: (response) => response.json(),
});