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-bridge-for-msa

v1.0.0

Published

A lightweight library for facilitating communication between a main page and an iframe using the postMessage API.

Downloads

11

Readme

iframe-bridge-for-msa

iframe-bridge-for-msa is a lightweight JavaScript library that facilitates communication between a main page and an iframe using the postMessage API. This library simplifies the process of sending and receiving messages between different origins, making it ideal for microservice architectures (MSA) where iframes are used to embed services.

Features

  • Easy setup for both server and client communication.
  • Supports sending and receiving structured messages.
  • Handles cross-origin communication securely.

Installation

You can install iframe-bridge-for-msa via npm:

npm install iframe-bridge-for-msa

Usage

Setting up the Server (Main Page)

  • In your main page, create an instance of PostMessageServer and set up the handlers for incoming messages.
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Main Page</title>
</head>
<body>
  <h1>Main Page</h1>
  <iframe src="iframe.html" width="600" height="400"></iframe>

  <script type="module">
    import { PostMessageServer } from './PostMessageServer.js';

    // Create an instance of PostMessageServer
    const server = new PostMessageServer();

    // Set up a server handler for the key 'getData'
    server.setServer({
      key: 'getData',
      handler: async (data) => {
        console.log('Request received:', data);
        // Simulate processing and return some data
        return { message: 'Hello from Main Page!' };
      }
    });
  </script>
</body>
</html>

Setting up the Client (Iframe Page)

  • In your iframe page, create an instance of PostMessageClient and send requests to the server.
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Iframe Page</title>
</head>
<body>
  <h1>Iframe Page</h1>
  <button id="sendRequest">Send Request</button>

  <script type="module">
    import { PostMessageClient } from './PostMessageClient.js';

    // Create an instance of PostMessageClient
    const client = new PostMessageClient({
      serverOrigin: window.parent.location.origin,
      serverWindow: window.parent
    });

    // Set up a click event to send a request to the server
    document.getElementById('sendRequest')?.addEventListener('click', () => {
      client.request({ key: 'getData', data: { query: 'Hello' } })
        .then(response => {
          console.log('Response received:', response);
          alert('Response: ' + JSON.stringify(response));
        });
    });
  </script>
</body>
</html>

API

PostMessageServer

Constructor

constructor(options?: { clientWindowGetter?: () => Window; clientOrigin?: string });
  • clientWindowGetter: Function to get the client window object. Defaults to () => window.
  • entOrigin: The origin of the client. Defaults to location.origin.

Methods

  • setServer({ key, handler })
    • key: The key for the handler.
    • handler: The handler function that processes the data and returns a promise.
  • unsetServer(key)
    • key: The key for the handler to be removed.

PostMessageClient

Constructor

constructor(options?: { serverWindow?: Window; serverOrigin?: string });
  • serverWindow: The target window object for the server. Defaults to window.
  • serverOrigin: The origin of the server. Defaults to location.origin.

Methods

  • request({ key, data })
    • key: The key identifying the request.
    • data: The data to be sent with the request.
    • Returns a promise that resolves with the response data.

Example Execution

To run the example included in this repository, follow these steps:

  1. Install Dependencies

    Ensure you have all the necessary dependencies installed. If you haven't already installed them, run:

    npm install
  2. Start Vite Development Server

    Use Vite to serve the example files. Run the following command to start the Vite development server:

    npx vite
  3. Open Your Browser

    Open your browser and navigate to http://localhost:5173. This will load the index.html file from the example directory, which includes the main page with the iframe.

  4. Interact with the Example

    In the main page, you will see an iframe loading the iframe.html file. You can interact with the example by clicking the “Send Request” button in the iframe, which will send a message to the main page and display the response.

That’s it! You should now see the PostMessageServer and PostMessageClient in action, facilitating communication between the main page and the iframe.

License

  • This project is licensed under the MIT License. See the LICENSE file for details.
  • Feel free to open issues or pull requests for any bugs or enhancements. Enjoy using iframe-bridge-for-msa!