Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
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 |
---|---|---|---|
scoure | Object | '' | set image uri |
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')}
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'
}}
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.
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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.