
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@yape/engine
Advanced tools

Yape, like in "yet another process engine" or "your adaptable process engine" is a JavaScript BPMN workflow execution engine.
First, install using npm or yarn
$ npm install @yape/engine --save
Then use yape in your Node.JS or in the browser.
const Yape = require('@yape/engine');
// Instantiate an engine
const yape = new Yape();
// Create a new process instance, specify a valid bpmn definition (returns a token)
const token = await yape
.createProcessInstance({
workflowDefinition: 'valid bpmn'
}).catch(console.error);
// Tell the initial token to continue execution
await token.exec().catch(console.error);
// At some later point in time, in a different part of
// your app (e.g. when a User task is handled as complete by your own app)
const token = await yape.continueTokenInstance({
tokenId: '<id of the token you want to execute>',
// set the payload you want to merge into the existing payload
payload: {}
});
await token.exec().catch(console.error);
...
Currently you can develop plugins for the following elements:
You create plugins by extending from one of the above classes and instantiating a class into the plugins array when creating the engine.
const Yape = require('@yape/engine');
class History extends Yape.Plugins.Element {
constructor({ store = [] } = {}) {
super();
this.store = store;
}
onReady = definition => {
this.store.push({ state: 'ready', elementId: definition.id });
};
onActive = definition => {
this.store.push({ state: 'active', elementId: definition.id });
};
onComplete = definition => {
this.store.push({ state: 'complete', elementId: definition.id });
};
}
const history = new History();
const yape = new Yape({ plugins: [history] });
The above plugin will push executed elements' id's into an array, which serves as some kind of log.
Every plugin can make use of three methods which will be called in order of execution, onReady, onActive and onComplete.
Methods receive the definition (as a moddle reference) of the current activity and the processInstance (including its .payload) as arguments. Read more about creating plugins here (... link missing...).
FAQs
Yape Engine
We found that @yape/engine demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.