@episerver/amd-loader-proxy

1.0.0 • Public • Published

amd-loader-proxy

A proxy to the AMD require function used in Episerver.

Installation

yarn

yarn add @episerver/amd-loader-proxy

npm

npm install @episerver/amd-loader-proxy

Importing

import loader from "@episerver/amd-loader-proxy";

Usage

The @episerver/amd-loader-proxy package exports a single function that takes the module ids as string parameters and returns a promise. This promise will resolve to an array containing the results for each module, e.g.:

// Load a single AMD module.
loader("dojo/topic").then(([topic]) => {

});

// Load multiple AMD modules.
loader("dojo/topic", "epi-cms/plugin-area/navigation-tree").then(([topic, navigationTreePluginArea]) => {

});

Or if you are using async/await:

const foo = async () => {
    // Load a single AMD module.
    const [topic] = await loader("dojo/topic");

    // Load multiple AMD modules.
    const [topic, navigationTreePluginArea] = await loader("dojo/topic", "epi-cms/plugin-area/navigation-tree");
}

License

MIT © Episerver

Dependencies (0)

    Dev Dependencies (2)

    Package Sidebar

    Install

    npm i @episerver/amd-loader-proxy

    Weekly Downloads

    1

    Version

    1.0.0

    License

    MIT

    Unpacked Size

    3.54 kB

    Total Files

    8

    Last publish

    Collaborators

    • johanpetersson
    • ryanbare
    • barteksekula
    • alwa
    • robinjac