Gathering detailed insights and metrics for url-loader
Gathering detailed insights and metrics for url-loader
Gathering detailed insights and metrics for url-loader
Gathering detailed insights and metrics for url-loader
A loader for webpack which transforms files into base64 URIs
npm install url-loader
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
1,405 Stars
133 Commits
158 Forks
23 Watching
4 Branches
53 Contributors
Updated on 02 Nov 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-4.4%
1,021,134
Compared to previous day
Last week
2.8%
5,375,292
Compared to previous week
Last month
9.9%
22,553,425
Compared to previous month
Last year
-30.9%
285,765,773
Compared to previous year
3
2
24
DEPREACTED for v5: please consider migrating to asset modules
.
A loader for webpack which transforms files into base64 URIs.
To begin, you'll need to install url-loader
:
1$ npm install url-loader --save-dev
url-loader
works like
file-loader
, but can return
a DataURL if the file is smaller than a byte limit.
index.js
1import img from './image.png';
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|jpg|gif)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 limit: 8192, 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
And run webpack
via your preferred method.
Name | Type | Default | Description |
---|---|---|---|
limit | {Boolean|Number|String} | true | Specifying the maximum size of a file in bytes. |
mimetype | {Boolean|String} | based from mime-types | Sets the MIME type for the file to be transformed. |
encoding | {Boolean|String} | base64 | Specify the encoding which the file will be inlined with. |
generator | {Function} | () => type/subtype;encoding,base64_data | You can create you own custom implementation for encoding data. |
fallback | {String} | file-loader | Specifies an alternative loader to use when a target file's size exceeds the limit. |
esModule | {Boolean} | true | Use ES modules syntax. |
limit
Type: Boolean|Number|String
Default: true
The limit can be specified via loader options and defaults to no limit.
Boolean
Enable or disable transform files into base64.
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|jpg|gif)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 limit: false, 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
Number|String
A Number
or String
specifying the maximum size of a file in bytes.
If the file size is equal or greater than the limit file-loader
will be used (by default) and all query parameters are passed to it.
Using an alternative to file-loader
is enabled via the fallback
option.
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|jpg|gif)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 limit: 8192, 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
mimetype
Type: Boolean|String
Default: based from mime-types
Specify the mimetype
which the file will be inlined with.
If unspecified the mimetype
value will be used from mime-types.
Boolean
The true
value allows to generation the mimetype
part from mime-types.
The false
value removes the mediatype
part from a Data URL (if omitted, defaults to text/plain;charset=US-ASCII
).
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|jpg|gif)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 mimetype: false, 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
String
Sets the MIME type for the file to be transformed.
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|jpg|gif)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 mimetype: 'image/png', 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
encoding
Type: Boolean|String
Default: base64
Specify the encoding
which the file will be inlined with.
If unspecified the encoding
will be base64
.
Boolean
If you don't want to use any encoding you can set encoding
to false
however if you set it to true
it will use the default encoding base64
.
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.svg$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 encoding: false, 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
String
It supports Node.js Buffers and Character Encodings which are ["utf8","utf16le","latin1","base64","hex","ascii","binary","ucs2"]
.
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.svg$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 encoding: 'utf8', 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
generator
Type: Function
Default: (mimetype, encoding, content, resourcePath) => mimetype;encoding,base64_content
You can create you own custom implementation for encoding data.
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|html)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 // The `mimetype` and `encoding` arguments will be obtained from your options 11 // The `resourcePath` argument is path to file. 12 generator: (content, mimetype, encoding, resourcePath) => { 13 if (/\.html$/i.test(resourcePath)) { 14 return `data:${mimetype},${content.toString()}`; 15 } 16 17 return `data:${mimetype}${ 18 encoding ? `;${encoding}` : '' 19 },${content.toString(encoding)}`; 20 }, 21 }, 22 }, 23 ], 24 }, 25 ], 26 }, 27};
fallback
Type: String
Default: 'file-loader'
Specifies an alternative loader to use when a target file's size exceeds the limit set in the limit
option.
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|jpg|gif)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 fallback: require.resolve('responsive-loader'), 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
The fallback loader will receive the same configuration options as url-loader.
For example, to set the quality option of a responsive-loader above use:
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.(png|jpg|gif)$/i, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 fallback: require.resolve('responsive-loader'), 11 quality: 85, 12 }, 13 }, 14 ], 15 }, 16 ], 17 }, 18};
esModule
Type: Boolean
Default: true
By default, file-loader
generates JS modules that use the ES modules syntax.
There are some cases in which using ES modules is beneficial, like in the case of module concatenation and tree shaking.
You can enable a CommonJS module syntax using:
webpack.config.js
1module.exports = { 2 module: { 3 rules: [ 4 { 5 test: /\.css$/, 6 use: [ 7 { 8 loader: 'url-loader', 9 options: { 10 esModule: false, 11 }, 12 }, 13 ], 14 }, 15 ], 16 }, 17};
SVG can be compressed into a more compact output, avoiding base64
.
You can read about it more here.
You can do it using mini-svg-data-uri package.
webpack.config.js
1const svgToMiniDataURI = require('mini-svg-data-uri'); 2 3module.exports = { 4 module: { 5 rules: [ 6 { 7 test: /\.svg$/i, 8 use: [ 9 { 10 loader: 'url-loader', 11 options: { 12 generator: (content) => svgToMiniDataURI(content.toString()), 13 }, 14 }, 15 ], 16 }, 17 ], 18 }, 19};
Please take a moment to read our contributing guidelines if you haven't yet done so.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/30 approved changesets -- score normalized to 2
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
project is archived
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
49 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More