Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
A image loader with some extras.
Provides image metadata from GraphicsMagick
Make sure you have ImageMagick and GraphicsMagick installed. On OSX, you can just do
brew install imagemagick
brew install graphicsmagick
Install the loader, and set config.output.imageFilename
// webpack.config.js
module.exports = {
output: {
publicPath: 'public/',
imageFilename: '[name]-[hash].[ext]'
},
module: {
loaders: [
{
test: /\.(jpg|jpeg|png)/,
loader: 'gm-loader'
}
]
}
};
config.output.imageFilename
You can use the placeholders specified here https://github.com/webpack/loader-utils#interpolatename
config.output.publicPath
https://github.com/webpack/docs/wiki/configuration#outputpublicpath
The following metadata are available after importing the image
Example:
var foo = require('./foo.png');
// foo.src => public/foo-8dh929db293898d.png
// foo.width => 400
// foo.height => 200
// foo.format => 'PNG'
// foo.geometry => '400x200'
// foo.depth => 8
// foo.filesize => '4.8Ki'
FAQs
Load imported Image's meta data, and some properties
We found that gm-loader 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
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.