Quick Start

Get a micro-frontend feature running in under 5 minutes.

1

Add the plugin

In your Nx workspace, install the HyperFrontend plugin:

npx nx add @hyperfrontend/features
2

Initialize a feature

Convert an existing application into a HyperFrontend feature:

npx nx g @hyperfrontend/features:init --project=my-app

This creates your feature configuration and contract schemas.

3

Add to a host

Integrate the feature into your host application:

npx nx g @hyperfrontend/features:add --feature=my-app --host=my-shell
4

Run it

Start your host application and see the feature load:

npx nx serve my-shell

Next Steps