iamdee

0.6.0 • Public • Published

iamdee

NPM version Build Status

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.

Usage

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
});

Supported Features

  • Named modules
  • Anonymous modules
  • baseUrl config
  • Loading non-AMD scripts

Browser Support

  • 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.

Error Codes

To save bytes iamdee does not include moduleError message strings and instead uses moduleError codes. Meaning of each code is presented below:

  1. define() call without id only works when script is loaded via require().
  2. require()'d module must not have id in its define() statement or match the one specified in the requesting require() statement.
  3. Synchronous require of the form const foo = require("foo") is only allowed for already loaded modules.
  4. Module loading failed because its dependency failed to load. The name of the failed dependency is written after the error code.
  5. Failed to load the script. Usually this indicates a network or a security policy error.

License

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.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.6.0
    2
    • latest

Version History

Package Sidebar

Install

npm i iamdee

Weekly Downloads

30

Version

0.6.0

License

MIT

Unpacked Size

23.2 kB

Total Files

7

Last publish

Collaborators

  • grassator