Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 1, 2024 via pnpm

url-loader 4.1.1

A loader for webpack which transforms files into base64 URIs
Package summary
Share
2
issues
1
high severity
license
1
1
low severity
license
1
6
licenses
67
MIT
7
BSD-2-Clause
3
BSD-3-Clause
6
other licenses
ISC
3
Apache-2.0
2
CC-BY-4.0
1
Package created
13 May 2012
Version published
9 Oct 2020
Maintainers
5
Total deps
83
Direct deps
4
License
MIT

Issues

2

1 high severity issue

high
Recommendation: Read and validate the license terms
via: webpack@5.91.0
Collapse
Expand

1 low severity issue

low
Recommendation: Read and validate the license terms
via: webpack@5.91.0
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
67 Packages, Including:
@jridgewell/gen-mapping@0.3.5
@jridgewell/resolve-uri@3.1.2
@jridgewell/set-array@1.2.1
@jridgewell/source-map@0.3.6
@jridgewell/sourcemap-codec@1.4.15
@jridgewell/trace-mapping@0.3.25
@types/eslint-scope@3.7.7
@types/eslint@8.56.10
@types/estree@1.0.5
@types/json-schema@7.0.15
@types/node@20.12.7
@webassemblyjs/ast@1.12.1
@webassemblyjs/floating-point-hex-parser@1.11.6
@webassemblyjs/helper-api-error@1.11.6
@webassemblyjs/helper-buffer@1.12.1
@webassemblyjs/helper-numbers@1.11.6
@webassemblyjs/helper-wasm-bytecode@1.11.6
@webassemblyjs/helper-wasm-section@1.12.1
@webassemblyjs/ieee754@1.11.6
@webassemblyjs/utf8@1.11.6
@webassemblyjs/wasm-edit@1.12.1
@webassemblyjs/wasm-gen@1.12.1
@webassemblyjs/wasm-opt@1.12.1
@webassemblyjs/wasm-parser@1.12.1
@webassemblyjs/wast-printer@1.12.1
acorn-import-assertions@1.9.0
acorn@8.11.3
ajv-keywords@3.5.2
ajv@6.12.6
big.js@5.2.2
browserslist@4.23.0
buffer-from@1.1.2
chrome-trace-event@1.0.3
commander@2.20.3
emojis-list@3.0.0
enhanced-resolve@5.16.0
es-module-lexer@1.5.2
escalade@3.1.2
events@3.3.0
fast-deep-equal@3.1.3
fast-json-stable-stringify@2.1.0
has-flag@4.0.0
jest-worker@27.5.1
json-parse-even-better-errors@2.3.1
json-schema-traverse@0.4.1
json5@2.2.3
loader-runner@4.3.0
loader-utils@2.0.4
merge-stream@2.0.0
mime-db@1.52.0

BSD 2-Clause "Simplified" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
hold-liable
Must
include-copyright
include-license
7 Packages, Including:
eslint-scope@5.1.1
esrecurse@4.3.0
estraverse@4.3.0
estraverse@5.3.0
glob-to-regexp@0.4.1
terser@5.31.0
uri-js@4.4.1

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
3 Packages, Including:
@xtuc/ieee754@1.2.0
serialize-javascript@6.0.2
source-map@0.6.1

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
3 Packages, Including:
electron-to-chromium@1.4.752
graceful-fs@4.2.11
picocolors@1.0.0

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
2 Packages, Including:
@webassemblyjs/leb128@1.11.6
@xtuc/long@4.2.2

Creative Commons Attribution 4.0 International

Uncategorized
Not OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
Cannot
Must
1 Packages, Including:
caniuse-lite@1.0.30001614
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

4
All Dependencies CSV
β“˜ This is a list of url-loader 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
loader-utils2.0.411.46 kBMIT
prod
mime-types2.1.355.46 kBMIT
prod
schema-utils3.3.017.93 kBMIT
prod
webpack5.91.04.71 MBMIT
prod peer
1
1

Visualizations

Frequently Asked Questions

What does url-loader do?

The url-loader is an invaluable webpack tool that augments your web development process by transforming files into base64 URIs (Uniform Resource Identifiers). It works synergistically with the file-loader, with the notable feature of being capable of returning a Data URL if the file size is lesser than a pre-set byte limit. This is exceptionally useful when dealing with smaller files as it obviates the need for separate HTTP requests. The binary data these files represent is directly embedded in the document, essentially becoming a part of the web page, and boosting load times.

How do you use url-loader?

Using url-loader involves several steps starting with its installation. You can simply use the command $ npm install url-loader --save-dev in your terminal to add url-loader to your development dependencies. Once installed, you use it in your webpack.config.js file by assigning url-loader as the loader in the module rules. You can then set options such as limit, which sets the maximum file size that will be transformed into a base64 URI. If a file exceeds this limit, file-loader will be used instead by default.

module.exports = {
  module: {
    rules: [
      {
        test: /\.(png|jpg|gif)$/i,
        use: [
          {
            loader: 'url-loader',
            options: {
              limit: 8192,
            },
          },
        ],
      },
    ],
  },
};

And to import an image into your index.js file, you would use this syntax:

import img from './image.png';

Finally, execute webpack through your preferred method.

Where are the url-loader docs?

Detailed documentation on how to utilize url-loader can be perused at the following GitHub repository: webpack-contrib/url-loader. It is comprehensive, covering the configuration and usage of all options including file size limit, mimetype, encoding, generator function for custom encoding implementations, fallback loader for when files exceed the set limit and esModule for toggling ES module syntax. It also provides usage examples to illustrate the application of these options in the webpack configuration, offering a clear step-by-step process for implementation.