jupiter

Simple, minimal & dependency-free JavaScript Publish/Subscribe

Usage no npm install needed!

<script type="module">
  import jupiter from 'https://cdn.skypack.dev/jupiter';
</script>

README

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.