Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

message-port-api

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

message-port-api

A simple package that allows you to simplify the use of `MessagePort API` more easily (Worker, IFrame...)

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

message-port-api

A simple package that allows you to simplify the use of MessagePort API more easily (Worker, IFrame...)

Build NPM Size Languages License Star Download

Installation

NPM / Yarn / Pnpm

pnpm add message-port-api

Usage

Worker

worker.ts

import { receive } from "message-port-api"

const controllers = receive(
  {
    receiver: self,
    sender: self
  },
  {
    sum(a: number, b: number) {
      return a + b
    }
  }
)

export type Controller = typeof controller

index.ts

import Worker from "./worker?worker"
import type { Controller } from "./worker"

const worker = new Worker()

console.log(
  await sender<Controller>(
    {
      receiver: worker,
      sender: worker
    },
    "sum",
    [1, 2]
  )
) // 3

IFrame

iframe

import { receive } from "message-port-api"

receive(
  {
    receiver: parent,
    sender: window
  },
  {
    changeBg(color: string) {
      document.body.style.backgroundColor = color
    }
  },
  {
    targetOrigin: "*"
  }
)

main.ts

import { send } from "message-port-api"

await send(
  {
    get receiver() {
      return iframe.contentWindow
    },
    sender: window
  },
  "changeBg",
  ["red"]
)

API

receive

This function will be located on the host side to handle the requested tasks

function receive(
  config: {
    receiver: Receiver // contains `postMessage` function to send return results
    sender: Sender // contains 2 functions `addEventListener` and `removeEventListener` to listen to and cancel the `message` event
  },
  controllers: Record<string, Function>, // processing functions
  targetOptions?: string | WindowPostMessageOptions // option 2 propagates to `postMessage`
): Controller

sender

This function will be on the client side to send processing requests and return a Promise containing processed results from receive function

function sender<Controllers>(
  config: {
    receiver: Receiver // contains `postMessage` function to send processing request
    sender: Sender // contains 2 functions `addEventLister` and `removeEventListener` to listen to and cancel the event `message` containing the results processed through the `receive` function
  },
  name: keyof Controllers, // function name for handling
  arguments: Arguments<Controllers[name]>, // processing function call parameter
  targetOptions?: string | WindowPostMessageOptions // option 2 propagates to `postMessage`
): Promise<ReturnType<Controllers[name]>> // prompt containing processed results

Keywords

FAQs

Package last updated on 03 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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