• Stars
    star
    566
  • Rank 78,774 (Top 2 %)
  • Language
    JavaScript
  • Created over 12 years ago
  • Updated almost 7 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

UNMAINTAINED: A client-side cross-window message broadcast library built on top of the HTML5 localStorage API.

This repository is no longer maintained by DIY.

If you wish to maintain or add to it, we encourage you to fork this repository. If a maintained fork emerges, please file a ticket to let us know so we can point to it here.


intercom.js

Cross-Window Message Broadcast Interface

Intercom is a client-side library that allows one window to broadcast messages to all other open windows / tabs (open to your site, of course). A socket.io binding is built in—which allows a single socket connection to painlessly propagate messages to all windows. Useful for chat services, notifications, and more.

The service is built on top of the HTML5 localStorage API.

Browser Support (chart): IE8+, Firefox 3.6+, Chrome 4+, Safari 4+, Opera 10.5+

Basic Usage

// run this in multiple tabs!
var intercom = Intercom.getInstance();

intercom.on('notice', function(data) {
	console.log(data.message);
});

intercom.emit('notice', {message: 'Hello, all windows!'});

Using with Socket.io

With the socket.io binding it's easy set up the socket connection to broadcast messages it receives to all open windows. It's also effortless to send messages over a single active socket from any open window (by calling emit on intercom).

intercom.bind(socket);

If you wish to override the default behavior to control whether the socket should be treated as read-only or write-only, use:

intercom.bind(socket, {
	send    : false, // send messages to the socket from intercom
	receive : true   // read messages from the socket and broadcast them over intercom
});

Filtering Messages

There could be some cases where you want fine control over what is or isn't read from / sent to the socket. The send and receive options also accept callbacks that are invoked for each message to determine if it should be emitted. Returning false from either of these will cause the message to be ignored.

intercom.bind(socket, {
	send: function(name, message) {
		return message.socket;
	},
	receive: function(name, message) {
		return message.broadcast;
	}
});

With the configuration above, messages like the following won't be sent to the socket:

intercom.emit('notice', {
	socket: false,
	message: 'I won\'t be sent over the socket!'
});

Similarly, only messages coming from the socket that have broadcast set to true will be picked up by intercom.

Uniqueness Constraints

In the case of multiple sockets in different windows possibly emitting the same message, use the id option to ensure it's only acknowledged once by each window.

intercom.bind(socket, {
	id: function(name, message) {
		return name + message.id;
	}
});

This requires you to send a unique identifier for each message from the socket.io source.

Methods

.emit(name, message)

Broadcasts a message to all open windows (including the current window).

.on(name, fn)

Sets up a listener to be invoked when a message with the given name is received.

.once(key, fn, [ttl])

Given a unique unique key to represent the function, fn will be invoked in only one window. The ttl argument represents the number of seconds before the function can be called again.

Intercom.destroy()

Removes all data associated with intercom from localStorage.

Intercom.getInstance()

Returns an instance of Intercom. If one doesn't exist, it will be instantiated.

License

Copyright © 2012 DIY Co

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

More Repositories

1

NSStringEmojize

A category on NSString to convert Emoji Cheat Sheet codes to their equivalent Unicode characters
Objective-C
637
star
2

jquery-emojiarea

A rich textarea control that supports emojis, WYSIWYG-style.
JavaScript
298
star
3

wizardry

A task-based node.js library for GraphicsMagick / ImageMagick.
JavaScript
121
star
4

jquery-placeholder

A jQuery plugin that polyfills the HTML5 "placeholder" attribute.
JavaScript
76
star
5

handlebars-helpers

Collection of generic handlebars helpers.
JavaScript
53
star
6

av

A "keep it simple, stupid" approach to working with AVFoundation
Objective-C
43
star
7

open-sourcerer

DIY Skill
29
star
8

opensourcerer.diy.org

A DIY Guide to Git, GitHub and open source collaboration!
JavaScript
14
star
9

diy-client

Minimalist streaming API client for DIY
JavaScript
5
star
10

icons

Future home of the diy-icons set
HTML
5
star
11

donutchart

Reusable donut chart module for DIY.
JavaScript
4
star
12

traducteur

A simple Node.js client for Google's Translation API.
JavaScript
4
star
13

web-playground

Play with web examples in a DIY friendly environment.
JavaScript
3
star
14

super-simple-server

DIY Simple Server Example for Backend Dev Skill
JavaScript
3
star
15

react-video-thumbnail

A react component that takes incremental snapshots of your videos
JavaScript
3
star
16

maker-club

Graphics and documents you might need to start your own Maker Club.
3
star
17

radarchart

Reusable radar chart module for DIY.
JavaScript
3
star
18

tos

DIY's Terms of Service
2
star
19

style-css

Styleguide for writing CSS at DIY
2
star
20

clubs

Creative assets for Club Leaders
2
star
21

classrooms

Assets to help educators add DIY to their classroom.
1
star
22

backenddev

Supplemental resources for Backend Dev skill on DIY.org
CSS
1
star
23

proxy-server

A simple proxy server for the DIY Maker's Stream API
JavaScript
1
star
24

style-js

Javascript style guide for DIY
1
star
25

assembly-assets

Mutate a transloadit assembly results array in to a diy assets object.
JavaScript
1
star
26

skill-stats

Service for gathering stats on DIY skills.
1
star
27

frontend-dev

Supplemental resources for Front-end developer skill on DIY.org
JavaScript
1
star