
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
react-responsive-embed
Advanced tools
You want to embed a YouTube or other iframe
style embedded content, and you'd
like it to take up the available width, and retain it's aspect ratio.
Much like the Bootstrap responsive embed helpers of old, but for react.
npm install --save react-responsive-embed
Then in your app import ResponsiveEmbed
and in JSX flavour you might do:
<ResponsiveEmbed src='https://www.youtube.com/embed/2yqz9zgoC-U' allowfullscreen />
Which'd give you an iframe
element pointing at the src
and any other props.
It's wrapped in a div
with just the right amount of padding-bottom
to
preserve a 16:9 aspect ratio like so:
<div style="position:relative;height:0;overflow:hidden;max-width:100%;padding-bottom:56.25%;">
<iframe src="https://www.youtube.com/embed/2yqz9zgoC-U"
style="position:absolute;top:0;left:0;width:100%;height:100%;"
frameborder="0"
allowfullscreen></iframe>
</div>
Pass in a ratio
prop to pick a different one. Any ratio will do:
<ResponsiveEmbed src='https://www.youtube.com/embed/2yqz9zgoC-U' ratio='4:3' />
frameborder="0"
is applied by default.
This module is just a function. It's been babelified so it'll work with whatever your set up is. Use browserify or webpack or any other npm module consuming bundle whizzbang; ResponsiveEmbed don't mind.
A (╯°□°)╯︵TABLEFLIP side project.
FAQs
Embed iframes responsively
The npm package react-responsive-embed receives a total of 2,057 weekly downloads. As such, react-responsive-embed popularity was classified as popular.
We found that react-responsive-embed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.