Small AMD loader designed for inlining into the page – just ~2kb (~1kb gzipped). It has original require.js
-compatible API and should be a stand-in replacement if you don't require advanced features like plugins, paths or shims.
Add inline script from the minified file from the dist
folder into your page. Then in your code you can use regular require
/ define
functions:
require(['your-dependency'], function (yourDependency) {
// your code
});
or
define(['your-dependency'], function (yourDependency) {
// your code
});
- Named modules
- Anonymous modules
baseUrl
config- Loading non-AMD scripts
- Evergreen (Chrome, Firefox, Opera, Safari, Edge)
- IE9+
If you only need to support evergreen browsers you can save ~100 bytes by using
dist/index.modern.min.js
custom build.
To save bytes iamdee does not include moduleError message strings and instead uses moduleError codes. Meaning of each code is presented below:
- define() call without id only works when script is loaded via require().
- require()'d module must not have id in its define() statement or match the one specified in the requesting require() statement.
- Synchronous require of the form
const foo = require("foo")
is only allowed for already loaded modules. - Module loading failed because its dependency failed to load. The name of the failed dependency is written after the error code.
- Failed to load the script. Usually this indicates a network or a security policy error.
The MIT License (MIT)
Copyright (c) 2018 Dmitriy Kubyshkin
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.