
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@opuscapita/fsm-workflow-task-manager
Advanced tools
FSM Task(Work) Manager is an extension to finite state machine. It manages existing tasks (stateful objects, e.g. invoice) within the lifecycle specified in Finite State Machine definition.
An example could be found here
const machine = new Machine({
machineDefinition: new MachineDefinition({schema,actions,conditions}),
context
});
const taskManager = new TaskManager({
machine: machine,
search: search,
update: update
});
//function that return promise that is resolved with task list
function search(searchParams) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve([{status: ''}, {status: ''}]);
}, 500)
})
};
//function that return promise that is resolved after object saving
function update(object) {
return new Promise((resolve, reject) => {
//some hard-working persistent saving code
resolve();
})
};
After configuration there is only one thing left behind - to start task list monitoring.
taskManager.run({ timeout: 1000 });
timeout argument indicates the frequency of calling search action and checking for available automatic event / sending events (in case found auto-transitions);
If the time has come to kill the process, you have to do the next:
taskManager.stop();
This method return true/false in case of correct/incorrect process finish, correspondingly.
Sometime you may need to get the process statistic (currently available values are: machine name, start & end timestamps)
taskManager.processCache
This field is an object with next signature:
{<timer_descriptor> : {
<name>,
<started>,
<finished>
}}
TBD: increase process cache notation usability TBD: add 1 by 1 event sending queue
You might need an ability to send event to an object with further saving. If you configured TaskManager properly and it knows how to save objects, next two code snippets do the same:
//passed as constructor arg to TaskManager
const update = (object) => {
<some async object update code>
return Promise
};
machine.sendEvent({object, event, request}).then(({object}) => {
return update(object);
})
//----equals---
taskManager.sendEvent({object, event, request})
Also you might want to start the workflow with further object saving. If you configured TaskManager properly and it knows how to save objects, next two code snippets do the same:
//passed as constructor arg to TaskManager
const update = (object) => {
<some async object update code>
return Promise
};
machine.start({object}).then(({object}) => {
return update(object);
})
//----equals---
taskManager.start({object})
FAQs
Task manager for FSM workflow
The npm package @opuscapita/fsm-workflow-task-manager receives a total of 1 weekly downloads. As such, @opuscapita/fsm-workflow-task-manager popularity was classified as not popular.
We found that @opuscapita/fsm-workflow-task-manager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 29 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.