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

@byhealth/channel

Package Overview
Dependencies
Maintainers
3
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@byhealth/channel

Quickly connect to iframe.

  • 0.1.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by500%
Maintainers
3
Weekly downloads
 
Created
Source

@byhealth/channel

Quickly connect to iframe.

Usages

Install package npm install @byhealth/channel

host.html

import { Host } from '@byhealth/channel';

const host = new Host({
  allowedOrigins: ['http://*.example.com'],
  target: '#container',
});
host.on('ready', function () {
  console.log('Host: client ready');
});
host.on('error', function (error) {
  console.error(error);
});
host.open('./iframe.html', {
  style: 'border: 0',
  width: '100%',
  height: '100px',
});

iframe.html

import { Client } from '@byhealth/channel';

const client = new Client({
  allowedOrigins: ['http://*.example.com'],
});
client.on('ready', function () {
  console.log('Client: Host ready');
});
client.on('error', function (error) {
  console.error(error);
});
client.connect();

APIs

HostConfig

interface HostConfig {
  /**
   * Example: ['https://*.by-health.com', 'https://*.4000916916.com']
   */
  allowedOrigins?: string[];

  /**
   * Mount point as selector or target element.
   */
  target?: string | HTMLElement;

  /**
   * Auto adjust height when receive 'resize' event from client
   */
  autoHeight?: boolean;
}

Host

host.open(url: string, attr?: any): void

Open iframe.

  • url: iframe open url
  • attrs: iframe attributes, eg: width, height, style, class...

host.close(): void

Close (remove) iframe.

host.on(event: string, fn: (...args: any[]) => void, context?: any): void

Add an event listener.

  • event: event name
  • fn: event callback
  • context: callback context (this)

host.once(event: string, fn: (...args: any[]) => void, context?: any): void

Add an event listener, the same as host.on(), but the callback is automatically deleted after the call.

  • event: event name
  • fn: event callback
  • context: callback context (this)

host.off(event: string, fn: (...args: any[]) => void, context?: any): void

Remove an event listener.

  • event: event name
  • fn: event callback
  • context: callback context (this)

host.emit(event: string, data?: any): void

Dispatch event, the client will receive it.

  • event: event name
  • data: payload

ClientConfig

interface ClientConfig {
  /**
   * Example: ['https://*.by-health.com', 'https://*.4000916916.com']
   */
  allowedOrigins?: string[];

  /**
   * Add window.addEventListener('resize') listener, when the height of the element changes, it automatically emit `resize` event to the host
   */
  autoHeight?: boolean;
}

Client

client.connect(): void

Connect to host.

client.disconnect(): void

Disconnect to host.

client.on(event: string, fn: (...args: any[]) => void, context?: any): void

Add an event listener.

  • event: event name
  • fn: event callback
  • context: callback context (this)

client.once(event: string, fn: (...args: any[]) => void, context?: any): void

Add an event listener, the same as client.on(), but the callback is automatically deleted after the call.

  • event: event name
  • fn: event callback
  • context: callback context (this)

client.off(event: string, fn: (...args: any[]) => void, context?: any): void

Remove an event listener.

  • event: event name
  • fn: event callback
  • context: callback context (this)

client.emit(event: string, data?: any): void

Dispatch event, the host will receive it.

  • event: event name
  • data: payload

FAQs

Package last updated on 18 Jun 2020

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