
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@episerver/amd-loader-proxy
Advanced tools
A proxy to the AMD require function used in Episerver.
yarn add @episerver/amd-loader-proxy
npm install @episerver/amd-loader-proxy
import loader from "@episerver/amd-loader-proxy";
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");
}
MIT © Episerver
FAQs
A proxy to the AMD require function used in Episerver
The npm package @episerver/amd-loader-proxy receives a total of 4 weekly downloads. As such, @episerver/amd-loader-proxy popularity was classified as not popular.
We found that @episerver/amd-loader-proxy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.