npm.io
1.3.0 • Published 11 years ago

jupiter

Licence
MIT
Version
1.3.0
Deps
0
Vulns
0
Weekly
0
Stars
2

Jupiter JS

npm install jupiter

Build Status Coverage Status Dep Status

Jupiter is a light-weight and simple to use Publish/Subscribe library for JavaScript. It's designed to work with both AMD & CommonJS and sports a clean, intuitive API.

Quick example:

foo.js

// Set the topic `someTopic` as a variable.
var someTopic = jupiter('someTopic');

// Utilize the variable to subscribe a function...
someTopic.sub(function(arg){
    console.log(arg);
});

bar.js

// Again, set the topic `someTopic` as a variable.
var someTopic = jupiter('someTopic');

// Utilize the variable to publish to a function...
someTopic.pub('Console should log this topic');

For more examples & documentation, see Jupiter's homepage.

Keywords