Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@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
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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.