Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kavu/webp-loader
WebP image loader & converter for Webpack
https://github.com/kavu/webp-loader
loader webp webpack
Last synced: 1 day ago
JSON representation
WebP image loader & converter for Webpack
- Host: GitHub
- URL: https://github.com/kavu/webp-loader
- Owner: kavu
- License: mit
- Created: 2016-01-08T00:04:34.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T05:49:40.000Z (almost 2 years ago)
- Last Synced: 2024-09-19T04:38:44.667Z (about 2 months ago)
- Topics: loader, webp, webpack
- Language: JavaScript
- Size: 2.91 MB
- Stars: 93
- Watchers: 4
- Forks: 17
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webp-loader
[![Build Status](https://travis-ci.org/kavu/webp-loader.svg?branch=master)](https://travis-ci.org/kavu/webp-loader)
[WebP](https://developers.google.com/speed/webp/) image loader & converter loader for Webpack.
## Install
```sh
npm install webp-loader --save-dev
```## Usage
Here is the example of using `webp-loader` along with common [file-loader](https://github.com/webpack/file-loader):
```javascript
loaders: [
{
test: /\.(jpe?g|png)$/i,
loaders: [
'file-loader',
'webp-loader'
]
}
]
```Unfortunately, if you wish to pass an options for internal [imagemin-webp](https://github.com/imagemin/imagemin-webp) you should pass a options in JSON form:
```javascript
loaders: [
{
test: /\.(jpe?g|png)$/i,
loaders: [
'file-loader',
'webp-loader?{quality: 13}'
]
}
]
```Normally you don't want to convert all of your images to WebP format, you just want to make alternate versions. You can use [multi-loader](https://github.com/webpack-contrib/multi-loader) to achieve it:
```javascript
loaders: [
{
test: /\.(jpe?g|png)$/i,
loader: multi(
'file-loader?name=[name].[ext].webp!webp-loader?{quality: 95}'
'file-loader?name=[name].[ext]',
)
},
]
```## Options
For all possible options please visit "API" section of the official [imagemin-webp README](https://github.com/imagemin/imagemin-webp#imageminwebpoptions).
## Inspiration
`webp-loader` is heavily inspired by [tcoopman/image-webpack-loader](https://github.com/tcoopman/image-webpack-loader).
## License
[MIT](http://opensource.org/licenses/MIT)