New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@appshell/loader

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appshell/loader

Utility for loading Appshell components

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
1
Created
Source
appshell

Appshell CI

@appshell/loader

Dynamically load Appshell components for micro-frontends built with Appshell and Webpack Module federation.

Working examples can be found here.

Getting Started

To begin, you'll need to install @appshell/loader:

npm install @appshell/loader --save-dev

or

yarn add -D @appshell/loader

or

pnpm add -D @appshell/loader

The default export from this package is the loader function. It is given the global appshell configuration, and returns an async function that can be called to dynamically load Appshell components.

import componentLoader from '@appshell/loader';

const load = componentLoader(config);

const Component = load<MyComponent>('MyModule/MyComponent');

render(<Component />);

Where does the global appshell configuration come from?

See @appshell/cli

appshell generate global-config --registry appshell_registry_path

Do you have any framework specific loaders?

See @appshell/react for a React loader.

Keywords

module federation

FAQs

Package last updated on 12 Aug 2025

Did you know?

Socket

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.

Install

Related posts