
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@appshell/react
Advanced tools
React utilities for building micro-frontends with Appshell and Module Federation
React utilites for building micro-frontends with Webpack Module federation and Appshell.
Working examples can be found here.
To begin, you'll need to install @appshell/react:
npm install @appshell/react --save-dev
or
yarn add -D @appshell/react
or
pnpm add -D @appshell/react
React component that dynamically loads Appshell components.
import { AppshellComponent, ManifestProvider } from '@appshell/react';
<App>
<ManifestProvider manifest={manifest}>
<AppshellComponent remote="PingModule/Ping">
<AppshellComponent remote="PongModule/Pong">
</ManifestProvider>
</App>
For access to the global appshell config.
import { GlobalConfigProvider, useGlobalConfig } from '@appshell/react';
const MyComponent = () => {
const config = useGlobalConfig();
...
}
<RegistryProvider config={config}>
<MyComponent />
</RegistryProvider>
For access to the manifest.
import { ManifestProvider, useManifest } from '@appshell/react';
const MyComponent = () => {
const manifest = useManifest();
...
}
<ManifestProvider manifest={manifest}>
<MyComponent />
</ManifestProvider>
Where does the registry come from?
Currently, the registry is a shared directory or mounted volume. It does support calling an http endpoint, but it has not yet been implemented.
See @appshell/cli
Each micro-frontend registers its manifest with the registry
appshell register --manifest dist/appshell.manifest.json
FAQs
React utilities for building micro-frontends with Appshell and Module Federation
We found that @appshell/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.