jupiter

1.3.0 • Public • Published

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.

Package Sidebar

Install

npm i jupiter

Weekly Downloads

15

Version

1.3.0

License

MIT

Last publish

Collaborators

  • majordan