Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pubsub-js

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pubsub-js - npm Package Compare versions

Comparing version 1.3.5 to 1.3.6

bower.json

2

package.json
{
"name": "pubsub-js",
"version": "1.3.5",
"version": "1.3.6",
"description": "Dependency free publish/subscribe library",

@@ -5,0 +5,0 @@ "main": "./src/pubsub.js",

@@ -7,3 +7,3 @@ # PubSubJS

PubSubJS has synchronisation decoubling, so messages are delivered asynchronously. This helps keep your program predictable as the originator of messages will not be blocked while consumers process messages.
PubSubJS has synchronisation decoupling, so messages are delivered asynchronously. This helps keep your program predictable as the originator of messages will not be blocked while consumers process messages.

@@ -24,2 +24,10 @@ For the adventurous, PubSubJS also supports synchronous message publication. This can give a speedup in some environments (browsers, not all), but can also lead to some very difficult to reason about programs, when one message triggers publication of another message in the same execution chain.

## Getting PubSubJS
There are several ways of getting PubSubJS
* [Download a tagged version](https://github.com/mroderick/PubSubJS/tags) from GitHub
* Install via npm (`npm install pubsub-js`)
* Intall via bower (`bower install pubsub-js`)
## Examples

@@ -230,2 +238,8 @@

## Changelog
* v1.3.6
* Add [bower](http://bower.io) support
* v1.3.5
* Fix package.json, add a "main" option, for easier use with node
* v1.3.4

@@ -232,0 +246,0 @@ * Updating grunt to 0.4.0

@@ -37,3 +37,3 @@ /*

name: 'PubSubJS',
version: '1.3.5'
version: '1.3.6'
},

@@ -40,0 +40,0 @@ messages = {},

@@ -13,3 +13,3 @@ /*jslint white:true, plusplus:true */

var PubSub = global.PubSub || require("../src/pubsub"),
EXPECTED_VERSION = "1.3.5";
EXPECTED_VERSION = "1.3.6";

@@ -16,0 +16,0 @@ buster.testCase( "PubSub module", {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc