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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@besync/react-use-iframe

v1.0.8

Published

## About

Downloads

194

Readme

React Hook for embedded Cross-Domain IFrames and Web Workers with 2 Way RPC Communication Channel

About

This is a light-weight React Hook for inserting an iFrame into a React element.

It solves the issues associated with passing objects, events and function calls between parent and child, especially in Cross Domain situations. This allows expensive work and/or security-sensitive work to be offloaded to sandboxed child iframes.

Optionally includes a zero-configuration, batteries included, runner for Webpack that automatically creates separate host and child entry points and HTML pages.

Features

  • Written for modern (2019+) React
  • Custom positioning anywhere in your host React component with {iframe}
  • iframe may contain any content including React components, third party widgets, etc.
  • Automatic resizing of parent DOM element height whenever child content changes
  • Pass thru required props to iframe, such as src
  • Secure, two way communication between host and child with iopa or koa style middleware API
  • Works for both same domain and cross domain situations
  • Typescript definitions included
  • No component classes or separate state manager required, pure React Hooks that can be used in function components

Requirements

React 16.7 or later

installation

$ npm install @besync/react-use-iframe
import { useFrame } from '@besync/react-use-iframe'
import { useChildFrame } from '@besync/react-use-iframe'

Usage (Parent)

/// app.js
import React from 'react'
import ReactDOM from 'react-dom'
import { useFrame } from '@besync/react-use-iframe'

const App = props => {
  const iframe = useFrame({ src: './frame.html' }, channel => {
    channel.use((context, next) => {
      console.log('request from iframe', context.request)
      next()
    })

    channel.route('page-title', (context, next) => {
      context.response = document.title
    })
  })

  return (
    <div>
      Hello World
      {iframe}
    </div>
  )
}

ReactDOM.render(<App />, document.getElementById('root'))

Usage (Child React example)

// ./src/frame.[js, tsx]
import React from 'react'
import ReactDOM from 'react-dom'
import { useChildFrame } from '@besync/react-use-iframe'

console.log('FRAME STARTED')

const framehelper = useChildFrame(channel => {
  channel.use((context, next) => {
    console.log('request from parent', context.request)
    return next()
  })

  channel.route('getName', (context, next) => {
    context.response = 'myNameisMyPassport'
  })

  document.body.addEventListener('click', e => {
    // use ready to make sure the iframe is ready
    // (useChilfFrame channel callback is called before DOM is rendered)
    channel.ready().then(() =>
      channel.fetch('page-title', 'myparameter').then(resp => {
        console.log('response from outer', resp)
      })
    )
  })
})

const App = () => {
  return (
    <div>
      This is the iFramne
      {framehelper}
    </div>
  )
}

ReactDOM.render(<App />, document.getElementById('root'))

Webpack Build

You need to make sure there are two separate entry points in Webpack (one for the main javascript, one for the iFrame specific javascript) and two separate HTML files created by the HTML Plugin.

The simplest way to do this is with @breun/scripts:

@berun configuration

// config/berun.config.js
module.exports = {
  use: [
    '@berun/preset-react',
    '@berun/runner-eslint',
    require('@besync/react-use-iframe/berun')
  ]
}

package.json

{
  "scripts": {
    "start": "berun-scripts start",
    "build": "berun-scripts build",
    "format": "berun-scripts lint",
    "test": "berun-scripts test --env=jsdom",
    "eject": "berun-scripts eject"
  },
  "dependencies": {
    "react": "next",
    "react-dom": "next",
    "@besync/react-use-iframe": "..."
  },
  "devDependencies": {
    "@berun/scripts": "...",
    "@berun/preset-react": "...",
    "@berun/runner-eslint": "..."
  },
  "resolutions": {
    "babel-core": "^7.0.0-bridge.0"
  }
}

Prior Art

  • maslianok/react-resize-detector - Used in the iFrame component to communicate resize events to the parent
  • @evecalm/message-hub - Used for the two way RPC between parent and child
  • @bestyled/berun - Used to provide a zero configuration, batteries included, Webpack build, similar to create-react-app
  • react-use - Used as inspiration for the React Hooks introduced in React 16.7; not used as a dependency
  • useState, useRef, and useEffects introduced in React 16.7

License

Apache 2.0