npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

iframe-coordinator

v5.5.14

Published

Tools for coordinating embedded apps via iframes.

Downloads

533

Readme

iframe-coordinator

Tools for coordinating independent single-page-apps embedded via iframe

Why would I want to do that?

Iframes are the only way to obtain strong isolation of the javascript runtime in a browser. This is useful for organizations with multiple teams shipping interfaces for different features. Teams can ship with confidence, knowing errors in other's code won't crash their interface.

Embedding applications via iframe also means that code from separate teams can be deployed and rolled back independently, limiting the impact of breaking changes.

How do I use it?

Host Application Example

JavaScript

/*
 * We require a few polyfills in order to support IE11.  These
 * will be needed to be loaded by both the host and the client.
 */
import "@babel/polyfill";
import "custom-event-polyfill/polyfill.js";
import "url-polyfill";

/* The iframe coordinator library uses custom elements to
 * embed itself in the host app. If you are targeting browsers
 * that don't support custom elements, you'll need a polyfill.
 * see: https://github.com/webcomponents/custom-elements for
 * more details on configuring the polyfill
 */
import "@webcomponents/custom-elements/src/native-shim.js";
import "@webcomponents/custom-elements/src/custom-elements.js";

/* Import the host library */
import { registerCustomElements } from "iframe-coordinator/host.js";

/* This will make the custom element `frame-router` available
 * for use in your browser. This element is the primary
 * host interface for the library.
 */
registerCustomElements();

/* The frame router configuration can be set up by setting the
 * `clientConfig` property on the frame-router element.
 * This registers two client apps with the `frame-router`.
 * `assignedRoute` is the fragment path in the current page that represents the root
 * path for that client. `url` is the page to load in the
 * iframe on that route. It must be a full Url, but you can
 * use the URL constructor to simplify handling
 * clients on the same domain.
 * (e.g. `new URL('/client/app/path/', window.location).toString()`)
 *
 * If the client uses fragment-based routing, the URL should include a hash fragment:
 * http://example.com/client/#/
 *
 * if the client uses pushstate path-based routing, leave the fragment out:
 * e.g. http://example.com/client/
 */

frameRouter.clientConfig = {
  clients: {
    application1: {
      url: `http://${hostname}:8080/client-app-1/#/`,
      assignedRoute: "/app1",
    },
    application2: {
      url: `http://${hostname}:8080/client-app-2/#/`,
      assignedRoute: "/app2",
      allow: "camera http://localhost:8080;", // optional
      sandbox: "allow-presentation allow-modals", // optional
      defaultTitle: "iframe Application 2 Example", // optional, but needed for accessibility
    },
  },
  envData: {
    locale: "en-US",
    hostRootUrl: window.location.origin + "/#/",
    registeredKeys: [
      { key: "a", ctrlKey: true },
      { key: "b", altKey: true },
      { key: "a", ctrlKey: true, shiftKey: true },
    ],
    custom: getCustomClientData(),
  },
};

HTML/DOM

Once the frame-router element is rendered and the client apps configured via setting the clientConfig property, navigation between and within client apps is done by changing the element's route attribute. In the example below, based on the previously shown configuration, the frame router will show show the URL at:
https://example.com/components/example1/#/my/path

<body>
  <!-- host-app stuff -->
  <frame-router
    id="frame-element"
    route="/one/my/path"
    frame-id="id-for-child-iframe"
  />
  <!-- more host-app stuff -->
</body>

Client Application Setup

See the client module docs for detailed setup instructions.

Local Client Application Development

When working on a client application locally, or running automated selenium tests, it can be burdensome to bootstrap a fully featured host-application just to work on the client app feature. To help with this, the iframe-coordinator library also provides a command-line utility ifc-cli which can spin up a local bare-bones host application. Documentation is always available via ifc-cli --help:

Usage: ifc-cli [options]

Options:
  -f, --config-file <file>  iframe client configuration file (default: "/home/mcheely/projects/iframe-coordinator/ifc-cli.config.js")
  -p, --port <port_num>     port number to host on (default: 3000)
  -s, --ssl                 serve over https
  --ssl-cert <cert_path>    certificate file to use for https
  --ssl-key <key_path>      key file to use for https
  -h, --help                output usage information

  This program will start a server for a basic iframe-coordinator host app. In
  order to configure the frame-router element and any other custom logic needed
  in the host app, a config file must be provided which should assign a
  function to `module.exports` that will be passed the frame-router element
  as an input once it has been mounted. The function should return a config
  object with the following fields:

  - publishTopics: A list of messaging topics the client publishes on

  Keep in mind that the config file is not a true commonJS module, and
  will be evaluated directly inside the browser in an immediately invoked
  function expression.

  The CLI host app also provides a proxy route under `/proxy/` that can be used
  if you need the client and host applications on the same domain. To use the proxy,
  simply make the url registered for the client that of the host app, followed by
  `/proxy/` and then the url of the client app. (See `app2` in the config below
  for an example)

  Here is an example config file:

module.exports = function(frameRouter) {
  frameRouter.clientConfig = {
    clients: {
      app1: {
        url: 'http://localhost:8080/client-app-1/#/',
        assignedRoute: '/app1'
      },
      app2: {
        // Instead of directly referencing client 2 via "url: `http://${hostname}:8080/client-app-2/#/`"
        // we use the built-in proxy route so it can share the same domain as the host app.
        url: `${window.location.origin}/proxy/${encodeURI(
          `http://${hostname}:8080/client-app-2/#/`
        )}`,
        assignedRoute: '/app2',
        sandbox: 'allow-presentation', // optional
        allow: 'microphone http://localhost:8080;' // optional
      }
    },
    envData: {
      locale: 'en-US',
      hostRootUrl: window.location.origin,
      custom: getCustomClientData()
    }
  };

  return {
    // These are the topics that the host app should display payloads for when
    // the client publishes on them.
    publishTopics: ['publish.topic']
  };
};

function getCustomClientData() {
  return { test: 'This is only a test' };
}

Development

Installation

Before you can build this you will need to make sure that you are using the LTS version of nodejs. Then you can run the following command npm ci

Building the Library

To run the build you can use the following command npm run build

Testing

npm run test # single run of tests
npm run test.watch # continuous run of tests
npm run test.watch.chrome # continuous run of tests in a chromium browser.

Running the Example App

To see an example of this in action you can run the following command npm run start-client-example and navigate to http://localhost:3000 on your machine.

IE11 support

Our target version of javascript is ES2015. This means that you will be required to transpile this library if you wish to support IE11. In addition the necessary polyfills will need to be loaded by both the host application and the client frame.