New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

backbone.radio

Package Overview
Dependencies
Maintainers
3
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backbone.radio - npm Package Versions

13

0.9.0

Diff

Changelog

Source

0.9.0

  • Breaking change: Space-separated requests no longer return an Array. Instead, an Object is returned.

    // old
    myChannel.request('thingOne thingTwo');
    // => [replyOne, replyTwo]
    
    // new
    myChannel.request('thingOne thingTwo');
    // => { thingOne: replyOne, thingTwo: replyTwo }
    
  • New feature: Radio.reset() is now a top-level API method that can be used to reset a channel, or all channels. Do note that channels continue to have their own reset method.

  • New feature: Radio.debugLog() is now exposed...go forth and customize how Radio logs potential errors!

jmeas
published 0.8.5 •

jmeas
published 0.8.4 •

jmeas
published 0.8.3 •

jmeas
published 0.8.2 •

Changelog

Source

0.8.2

  • Refactor: A small refactor to support Underscore 1.4.4 (the lowest version that Marionette supports)
jmeas
published 0.8.0 •

Changelog

Source

0.8.0

  • Feature: DEBUG now warns when an already-registered Command or Request is overwritten
  • Feature: stopComplying and stopReplying now accept the same arguments as off
jmeas
published 0.7.2 •

Changelog

Source

0.7.2

  • Corrects Underscore dependency in bower.json.
jmeas
published 0.7.1 •

Changelog

Source

0.7.1

  • Corrects Underscore dependency.
jmeas
published 0.7.0 •

Changelog

Source

0.7.0

  • Feature: All API methods of Commands ands Requests now support the space-separated syntax.
  • Enhancement: Only Channels created through Radio's factory method will register themselves on the internal store of Channels
  • Enhancement: Callback execution has been optimized
jmeas
published 0.6.0 •

Changelog

Source

0.6.0

This update is not backwards compatible.

  • Feature: channelName is now a public property on each Channel.

  • Feature: Requests and Commands can now have "default" handlers which will be called when the specified event isn't registered.

  • API Change: The convenience connectX methods have been removed. In their place, the object syntax can be used for registering multiple events on channels. This makes the API of Radio more consistent with Backbone.Events. For instance,

    myChannel.reply({
      oneRequest: myCallback,
      anotherRequest: myCallback
    }, myContext);
    
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