Code Monkey home page Code Monkey logo

cross-tab-communication's Introduction

Cross-Tab Communication with JavaScript

The following repository will be used in the Jagr 3-part series covering different ways to conduct cross-tab communication.

Lesson 1 - LocalStorage

Status: Completed | View on YouTube | View on Jagr | MDN Doc

First, we'll be going over cross-tab communication with LocalStorage. This method is best if you need to support older browsers, it has support back to IE8. It's also the only method that has decent mobile browser support.

Lesson 2 - SharedWorker

Status: Completed | View on YouTube | View on Jagr | MDN Doc

Second, we'll cover using a SharedWorker. This method is similar to using a WebWorker, except the worker is sharable across browser contexts (windows, tabs, frames). Using this approach is great if you're doing some heavy lifting because all the worker's code will be run in the background by the browser. Meaning, it's not running on the same thread as our application.

Lesson 3 - BroadcastChannel

Status: In-Progress | MDN Doc

Last, we'll cover using a BroadcastChannel. This is a native browser API to achieve exactly what we want. The down side is there's no Safari support.

cross-tab-communication's People

Contributors

tomgobich avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.