Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
rollup-plugin-img
Advanced tools
Import image files with rollup. Let you import images just like what you do with webpack in your React code!
yarn add --dev rollup-plugin-img
or
npm install -D rollup-plugin-img
In the rollup.config.js:
import image from 'rollup-plugin-img';
export default {
entry: 'src/index.js',
dest: 'dist/bundle.js',
plugins: [
image({
limit: 10000
})
]
};
and in your React code:
import img from 'path/image.png';
...
render() {
return <img src={ img } />;
}
...
You can pass an option to the image()
just like above, and there are some options:
demo:
...
image({
output: `${distPath}/images`, // default the root
extensions: /\.(png|jpg|jpeg|gif|svg)$/, // support png|jpg|jpeg|gif|svg, and it's alse the default value
limit: 8192, // default 8192(8k)
exclude: 'node_modules/**'
})
...
MIT
FAQs
import image files with rollup
The npm package rollup-plugin-img receives a total of 2,124 weekly downloads. As such, rollup-plugin-img popularity was classified as popular.
We found that rollup-plugin-img 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.