Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
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 255 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.