Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
rax-image
Advanced tools
Based on the realization of the type of image, a better picture can be displayed using Picture components.
$ npm install rax-image --save
import Image from 'rax-image';
name | type | default | describe |
---|---|---|---|
source | Object | '' | set image uri |
fallbackSource | Object | '' | load fallback image when source image load failed |
style | Object | '' | if picture is not set wide high default is 0x0 |
resizeMode | String | '' | Decide how to resize the image when the component size and picture size are out of proportion |
Support any custom attributes.
resizeMode supported values include:contain、cover、stretch、center、repeat
Before you use it, check that image-source-loader is already enabled in webpack.config.js
import {createElement, Component, render} from 'rax';
import Image from 'rax-image';
class App extends Component {
render() {
return (
<Image
source={require('./path/to/your/image.png')}
fallbackSource={{
uri: 'https://gw.alicdn.com/tps/i3/TB1yeWeIFXXXXX5XFXXuAZJYXXX-210-210.png_70x70.jpg'
}}
resizeMode="cover"
/>
);
}
}
render(<App />);
// demo
import {createElement, Component, render} from 'rax';
import Image from 'rax-image';
class App extends Component {
render() {
return (
<Image
source={{
uri: 'https://gw.alicdn.com/tfs/TB1g6AvPVXXXXa7XpXXXXXXXXXX-215-215.png'
}}
fallbackSource={{
uri: 'https://gw.alicdn.com/tps/i3/TB1yeWeIFXXXXX5XFXXuAZJYXXX-210-210.png_70x70.jpg'
}}
style={{
width: 100,
height: 100,
}}
resizeMode="cover"
/>
);
}
}
render(<App />);
FAQs
Image component for Rax.
The npm package rax-image receives a total of 321 weekly downloads. As such, rax-image popularity was classified as not popular.
We found that rax-image 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.