A micro publish/subscribe messaging framework, weighing in at only 198 bytes gzipped. Created by rewriting Peter Higgins' jQuery plugin, MinPubSub is completely self contained with no external dependencies. Keep your projects loosely coupled with this powerful design pattern. Also available on http://search.npmjs.org/#/minpubsub.
Supports
Tested Environments
//subscribe to a topic
var handle = subscribe("/some/topic", function(msg){
console.log(msg);
});
//publish topic a few times
publish("/some/topic", ["first time"]);
publish("/some/topic", ["second time"]);
//unsubscribe from the topic
unsubscribe(handle);
//subscriber is no longer listening to the topic
publish("/some/topic", ["message will not be logged"]);
If you don't want these methods added to the window object simply modify the immediate function to pass in the JavaScript object of your choosing.
publish (String topic, Array? args)
summary:
topic: String
args: Array?
example:
javascript
publish("/some/topic", ["a","b","c"]);
subscribe (String topic, Function callback)
summary:
topic: String
callback: Function
returns: Array
example:
javascript
subscribe("/some/topic", function(a, b, c){ /* handle data */ });
unsubscribe (Array handle)
summary:
handle: Array
example:
javascript
var handle = subscribe("/some/topic", function(){});
unsubscribe(handle);
(The MIT License)
Copyright (c) 2011 Daniel Lamb
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
—
$ claude mcp add MinPubSub \
-- python -m otcore.mcp_server <graph>