Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Dynamic communication flows between message based actors.
Babble makes it easy to code communication flows between actors. A conversation
is modeled as a control flow diagram containing blocks listen
, ask
, tell
,
reply
, decide
, and run
. Each block can link to a next block in the
control flow. Conversations are dynamic: a scenario is build programmatically,
and the blocks can dynamically determine the next block in the scenario.
During a conversation, a context is available to store the state of the
conversation.
Babble uses pubsub to communicate between actors. It comes with built in support to communicate locally, and has as support for pubnub to connect actors distributed over multiple devices.
Babble runs in node.js and in the browser.
Install babble via npm:
npm install babble
Load in node.js:
var babble = require('babble');
Load in the browser:
<!DOCTYPE html>
<html>
<head>
<!-- load pubnub, only needed when using pubnub -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/pubnub/3.5.4/pubnub.min.js"></script>
<!-- load babble -->
<script src="../../dist/babble.min.js"></script>
</head>
<body>
</body>
</html>
Then babble can be loaded and used:
var babble = require('babble');
var emma = babble.babbler('emma').subscribe(),
jack = babble.babbler('jack').subscribe();
emma.listen('ask age')
.reply(function () {
return 25;
}));
jack.ask('emma', 'ask age')
.run(function (age, context) {
console.log(context.from + ' is ' + age + ' years old');
}));
TODO: describe control flow blocks
Babble can be used to listen for messages and send a reply. In the following example, emma listens for two messages: "ask age" and "tell age". In the first case she will reply telling her age, in the second case she just outputs the received age. Jack first tells his age, and then asks emma's age, waits for her to reply, and then output the received age.
This scenario can be represented by the following control flow diagram:
The scenario is programmed as:
var babble = require('babble');
var emma = babble.babbler('emma').subscribe(),
jack = babble.babbler('jack').subscribe();
emma.listen('ask age')
.reply(function () {
return 25;
});
emma.listen('tell age')
.run(function (age, context) {
console.log(context.from + ' is ' + age + ' years old');
});
jack.tell('emma', 'tell age', 27);
jack.ask('emma', 'ask age')
.run(function (age, context) {
console.log(context.from + ' is ' + age + ' years old');
});
The following scenario describes two peers planning a meeting in two steps: First jack asks whether emma has time for a meeting, and if so, jack will propose to meet, and await emma's response.
This scenario can be represented by the following control flow diagram:
The scenario can be coded as follows. Note that the implementations of the control flow blocks are separated from the flow itself.
var babble = require('babble');
var emma = babble.babbler('emma').subscribe(),
jack = babble.babbler('jack').subscribe();
function decideIfAvailable () {
return (Math.random() > 0.4) ? 'yes' : 'no';
}
function decideToAgree (response) {
if (response == 'can we meet at 15:00?' && Math.random() > 0.5) {
return 'ok';
}
else {
return 'no';
}
}
function yes() {
return 'yes';
}
function ok () {
return 'ok';
}
function no () {
return 'no';
}
emma.listen('do you have time today?')
.decide(decideIfAvailable, {
yes: babble.reply(yes)
.decide(decideToAgree, {
ok: babble.reply(ok),
no: babble.reply(no)
}),
no: babble.reply(no)
});
function askToMeet () {
return 'can we meet at 15:00?';
}
function noTime () {
console.log('emma has no time');
}
function agreesToMeet (response) {
return (response == 'ok') ? 'ok': 'notOk';
}
function agreement () {
console.log('emma agreed');
}
function noAgreement () {
console.log('emma didn\'t agree');
}
jack.ask('emma', 'do you have time today?')
.decide({
yes: babble.reply(askToMeet)
.decide(agreesToMeet, {
ok: babble.run(agreement),
notOk: babble.run(noAgreement)
}),
no: babble.run(noTime)
});
Babble has the following factory functions:
babble.babbler(id: String) : Babbler
Factory function to create a new Babbler.babble.run(callback: Function) : Block
Create a flow starting with an Action block. The provided callback function
is called as callback(response, context)
and should not return a result.babble.decide([decision: Function, ] choices: Object<String, Block>) : Block
Create a flow starting with a Decision block.
When a decision
function is provided, the function is invoked as
decision(response, context)
. The function must return the id for the next
block in the control flow, which must be available in the provided options
.
If decision
is not provided, the next block will be mapped directly from the
response
. Parameter choices
is a map with the possible next blocks in the
flow. The next block is selected by the id returned by the decision
function.
The returned block is used as next block in the control flow.babble.reply(callback: Function) : Block
Create a flow starting with a Reply block. The provided callback function
is called as callback(response, context)
, where response
is the latest
received message, and must return a result. The returned result is send to the
connected peer.babble.then(block: Block) : Block
Create a flow starting with given block. The provided callback function
is called as callback(response, context)
, where response
is the latest
received message, and must return a result. The returned result is send to the
connected peer.Babble contains the following prototypes. These prototypes are normally instantiated via the above mentioned factory functions.
babble.Babbler
babble.block.Block
babble.block.Action
babble.block.Decision
babble.block.Reply
babble.block.Start
A babbler is created via the factory function babble.babbler(id: String)
.
A babbler has the following functions:
subscribe([pubsub: Object] [, callback])
Subscribe to a pubsub system. Babble comes with interfaces to support various
pubsub systems: pubnub
, pubsub-js
, and default
. These interfaces are
available in the babble.pubsub
namespace. If parameter pubsub
is not
provided, babble uses the default
pubsub system, which works locally.
A pubsub system can be specified like:
babbler.subscribe(babble.pubsub['pubnub'], function () {
// connected
});
unsubscribe()
Unsubscribe from the subscribed pubsub system.
publish(id: String, message: *)
Send a message to another peer.
listen(message: String [, callback: Function]) : Block
Listen for incoming messages. If there is a match, the returned control flow
block will be executed. Other blocks can be chained to the returned block.
tell(id: String, message: String [, data: JSON])
Send a notification to another peer.
ask(id: String, message: String [,data: JSON] [, callback: Function]) : Block
Send a question to another peer. Returns a start
Block which is executed
When the reply comes in. Other blocks can be chained to the returned block.
Blocks can be created via the factory functions available in babble
(reply
, decide
, run
, then
, listen
), or in a Babbler (listen
, ask
).
Blocks can be chained together, resulting in a control flow. The results
returned by blocks are used as input argument for the next block in the chain.
A Block has the following functions:
decide([decision: function, ] choices: Object<String, Block>) : Block
Append a decision block to the control flow. Returns the first block in the
chain.reply(callback: Function) : Block
Append a Reply block to the control flow. Returns the first block in the
chain.listen([callback: Function]) : Block
Append a Listen block to the control flow. Returns the first block in the
chain.run(callback: Function) : Block
Append an Action block to the control flow. Returns the first block in the
chain.then(block : Block) : Block
Append an arbitrary block to the control flow. Returns the first block in the
chain.Babble can be build for use in the browser. This is done using the tools browserify and uglify. First install all project dependencies:
npm install
To build the library ./dist/babble.js
, run:
npm run build
To build and minify the library ./dist/babble.min.js
, run:
npm run minify
To execute tests for the library, install the project dependencies once:
npm install
Then, the tests can be executed:
npm test
2014-01-10, version 0.4.0
FAQs
Dynamic communication flows between message based actors.
The npm package babble receives a total of 13 weekly downloads. As such, babble popularity was classified as not popular.
We found that babble 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.