Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@rio-cloud/iframe-resizer
Advanced tools
This Iframe-Resizer wrapper is a react component which embeds an SPA in an Iframe. It responsively resizes the height of the Iframe and its displayed content. It can be used to render websites within an iFrame whose size changes dynamically.
This container service currently covers the following features:
Your SPA needs to be able to send its height to the parent window via postMessage whenever it's size changes, and you will need to implement this functionality yourself. ForExample:
function onResize() {
if (document.referrer) {
const height = document.body.clientHeight;
window.parent.postMessage({ height: height }, document.referrer);
}
}
The IframeResizer will listen for these messages and behave accordingly.
If your SPA is also written in React, you would probably implement this in a componentDidUpdate()
function.
"@rio-cloud/iframe-resizer": "0.0.1"
Execute npm install
Add the in your parentApplication.js with the URL of the SPA you want to display in it and add it to the rendering.
import IframeResizer from '@rio-cloud/iframe-resizer';
const myGreatApp = <IframeResizer url={"https://myToBeDisplayedSPA_URL/"}/>
To start the demo app locally, first run npm run start-demo
then run npm run start
in a separate terminal.
iframe-resizer is licensed under the Apache 2.0 license.
FAQs
RIO Iframe resizer
The npm package @rio-cloud/iframe-resizer receives a total of 7 weekly downloads. As such, @rio-cloud/iframe-resizer popularity was classified as not popular.
We found that @rio-cloud/iframe-resizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.