Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
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 3,256 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 found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
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.