Socket
Socket
Sign inDemoInstall

img-size-loader

Package Overview
Dependencies
1
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    img-size-loader

webpack image size loader. does not emit file


Version published
Weekly downloads
28
decreased by-20%
Maintainers
1
Install size
35.5 kB
Created
Weekly downloads
 

Readme

Source

Webpack image size loader

NPM

Webpack image size loader. This loader

  • Returns size info only
  • Does not emit file
  • Has no side effect
  • Is totally compatible with any other loaders (e.g. file-loader url-loader). Check usage for detail

Usage

  • Install With yarn: yarn add -D img-size-loader
  • Or install with npm: npm install --save-dev img-size-loader
  • It is highly recommended to overloading other loaders by preceding inline loader with punctuation(!)
  • Inline Import example
//leading punctuation (!)
//otherwise, will conflict with other loaders
import ImageSize from '!img-size-loader!./my-logo.png'
//assume that '*.png' is loaded via `url-loader`, `file-loader`, ... by default
import ImageUrl from './my-logo.png'

console.log(ImageSize)
//output: { width: 1379, height: 991, type: 'png' }
console.log(ImageUrl)
//output: http://127.0.0.1:8080/bundles/price_8a330fe5105f76b9a439f58cce44572c.png
  • Webpack config. Add to module.rules
  {
    test: /\.(bmp|cur|gif|icns|ico|jpeg|png|psd|tiff|webp|svg|dds)(\?[a-z0-9]+)?$/,
    resourceQuery: /size/,
    use: [ { loader: 'img-size-loader', } ]
  },

And in your code: import ImageSize from './my-logo.png?size'

Dependencies

Keywords

FAQs

Last updated on 15 Apr 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc