An opinionated library for handling responsive images with help of imgproxy.
It takes your images, generates optimized 1x, 2x and 3x versions of them and output them as 
Having breakpoints like that
mobile: (max-width: 767px)
tablet: (min-width: 768px, max-width: 1279px)
desktop: (min-width: 1280px)
and images structured like that
images/
  myImage/      <-| picture name
    mobile.png  <-| different image variations,
    tablet.png  <-| names should be the same as breakpoint names above,
    desktop.png <-| images should be in 3x resolution
this lib helps you to get
<picture>
  <source 
    srcset="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/mobile-a78dac89.png@webp 1x, 
            http://localhost:8080/insecure/dpr:0.6666/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/mobile-a78dac89.png@webp 2x, 
            http://localhost:8080/insecure/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/mobile-a78dac89.png@webp 3x"
    media="(max-width: 767px)" 
    type="image/webp" 
  >
  <source 
    srcset="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/mobile-a78dac89.png@png 1x, 
            http://localhost:8080/insecure/dpr:0.6666/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/mobile-a78dac89.png@png 2x, 
            http://localhost:8080/insecure/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/mobile-a78dac89.png@png 3x"
    media="(max-width: 767px)" 
    type="image/png" 
  >
  <source 
    srcset="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/tablet-4dcebf08.png@webp 1x, 
            http://localhost:8080/insecure/dpr:0.6666/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/tablet-4dcebf08.png@webp 2x, 
            http://localhost:8080/insecure/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/tablet-4dcebf08.png@webp 3x"
    media="(min-width: 768px) and (max-width: 1279px)" 
    type="image/webp" 
  >
  <source 
    srcset="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/tablet-4dcebf08.png@png 1x,
            http://localhost:8080/insecure/dpr:0.6666/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/tablet-4dcebf08.png@png 2x, 
            http://localhost:8080/insecure/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/tablet-4dcebf08.png@png 3x"
    media="(min-width: 768px) and (max-width: 1279px)" 
    type="image/png"
  >
  <source 
    srcset="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@webp 1x, 
            http://localhost:8080/insecure/dpr:0.6666/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@webp 2x, 
            http://localhost:8080/insecure/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@webp 3x"
    media="(min-width: 1280px)"
    type="image/webp" 
  >
  <source 
    srcset="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@png 1x, 
            http://localhost:8080/insecure/dpr:0.6666/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@png 2x, 
            http://localhost:8080/insecure/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@png 3x"
    media="(min-width: 1280px)" 
    type="image/png" 
  >
  <img 
    srcset="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@png 1x, 
            http://localhost:8080/insecure/dpr:0.6666/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@png 2x, 
            http://localhost:8080/insecure/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@png 3x" 
    src="http://localhost:8080/insecure/dpr:0.3333/plain/http://192.168.1.134:8081/build/example/images/differentBreakpoints/desktop-3b835739.png@png" 
    alt="Image with different breakpoints"
  >
</picture>npm i @csssr/csssr.imagesI recommend you to check the example.
Add loader to your webpack config:
webpack.config.js
module.exports = {
  module: {
    rules: [
      {
        test: /\.(png|jpe?g|webp)$/i,
        use: [
          {
            loader: '@csssr/csssr.images',
            options: {
              // @csssr/csssr.images loader options, see below
            },
          },
            // file-loader is required
            loader: 'file-loader',
            options: {
              // file-loader options by your preference
            },
          },
        ],
      },
    ],
  },
}Then import the target file or require.context() target files:
file.js
import images from ('./images/foo/boo.png')or
const images = require.context('./images/foo')The loader will accept your image as the initial and will generate optimized version. Next, it will emit this image on the specified path and return the object, which will contain the path to the all versions of the image and srcSet.
Type: String
Required: true
Resolution of original image. Could be 1x, 2x or 3x.
ℹ️ It is recommended to set the height and width of the initial image multiple of value you specify in this option
Type: Array
Required: true
Array of breakpoints for which you want generate optimized images. Each breakpoint require a name and minWidth or maxWidth fields. Example:
[    
  {
    name: 'mobile',
    maxWidth: 767,
  },
  {
    name: 'tablet',
    minWidth: 768,
    maxWidth: 1279,
  },
  {
    name: 'desktop',
    minWidth: 1280,
  }
]Order of breakpoints matter — you should start from the smallest.
ℹ️ You should name your images according to the breakpoints for which they will be used, with one exception - name
all. Image with nameallwill be last in source list and will be default, if there is no image for particular breakpoint. See the example.
Type: Object
Required: true
Object that contains settings for imgproxy server.
Type: Boolean
Default: false
Required: false
Disable processing of images by this loader (useful in development). Images data will still be generated but only for the original resolution.
Type: string
Required: true
URL of your images host.
Type: string
Required: true
URL of your imgproxy host.
Returns 
Type: BreakpointSource
Required: true
Accepts an array of objects that contains information about images srsSets for different breakpoints.
Type: String
Required: false
Type: String
Required: false
Type: String
Required: false
loading attribute for . Can be one of: 
eager, lazy.
Type: String
Required: false
className attribute for 
Accepts all the same props as Picture, except requireImages.
Type: __WebpackModuleApi.RequireContext
Required: true
Accepts webpack require.context() object and builds from it sources array. See the example.
Accepts BreakpointSource array and return biggest URL to original image
const pictureData = require('./images/foo/boo.png')
getOriginal(pictureData)Type: BreakpointSource
An array of objects that contains information about images srsSets for different breakpoints
Accepts CSS selector and BreakpointSource object and return css string that contains rules for background-image for your breakpoints for provided selector.
const pictureData = require('./images/foo/boo.png')
const selector = '.boo'
backgroundCss(selector, pictureData)Will return
.boo {
  background-image:url(http://github.com/%3Cspan%20class=%22pl-c1%22%3E*%3C/span%3Egenerated%20url%20to%20your%20image*);
}
@media *media rules for one of your breakpoints* {
  .boo {
    background-image: url(http://github.com/%3Cspan%20class=%22pl-c1%22%3E*%3C/span%3Egenerated%20url%20to%20your%20image*);
  }
}
@media *media rules for one of your breakpoints* {
  .boo{
    background-image:url(http://github.com/%3Cspan%20class=%22pl-c1%22%3E*%3C/span%3Egenerated%20url%20to%20your%20image*)
  }
}Type: String
CSS selector for which you want add optimized images
Type: BreakpointSource
An array of objects that contains information about images srsSets for different breakpoints
Works the same as backgroundCss but instead of BreakpointSource it accepts __WebpackModuleApi.RequireContext object.
const pictureData = require.context('./images/foo')
backgroundCss('.boo', pictureData)