Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
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
The npm package gm-loader receives a total of 1 weekly downloads. As such, gm-loader popularity was classified as not popular.
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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.