Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-ratio
Advanced tools
Small component that allows you to create responsive elements that will keep their ratio on different screen sizes.
Small component that allows you to create responsive elements that will keep their ratio on different screen sizes.
It uses standard CSS hack to achieve it.
Please note that Ratio
ads wrapper element which makes things easier in certain scenarios.
import React, { Component } from 'react';
import Ratio from 'react-ratio';
export default class Example extends Component {
render() {
return (
<Ratio ratio={ 16 / 9 }>
YOUR CONTENT GOES HERE
</Ratio>
);
}
}
ratio, default 1
Aspect ratio value. E.g. for 16:9
ratio, pass 16 / 9
.
Zero will default it back to one.
className, default ''
Wrapper element class name
ratioClassName, default ''
Helper div class name.
contentClassName, default ''
Content div class name
style, default {}
Object with CSS styles for the wrapper element. By default it adds display: block
but it can be overridden.
tagName, default 'div'
HTML element to be used for the wrapper element. E.g. you can pass a
or aside
.
All other props will be pass to the wrapper element. This is useful for passing accessibility props like aria-label
or tabIndex
.
FAQs
Small component that allows you to create responsive elements that will keep their ratio on different screen sizes.
We found that react-ratio 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.