
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@launchpad-ui/core
Advanced tools
A modern, intuitive, and accessible design system made and used by the LaunchDarkly team. Built on React, TypeScript, and CSS.
$ yarn add @launchpad-ui/core
# or
$ npm install @launchpad-ui/core
First, import the CSS variable tokens into your project:
@import '@launchpad-ui/tokens/dist/index.css';
@import '@launchpad-ui/tokens/dist/media-queries.css';
@import '@launchpad-ui/tokens/dist/themes.css';
Voilà, you can now begin using any of the components available in LaunchPad. For the full list, view our Storybook.
import { Alert, AlertKind } from '@launchpad-ui/core';
...
return (
<Alert kind={AlertKind.ERROR}>
An unexpected error occurred.
</Alert>
)
Side-effect imports of CSS files are used for component styles. In LaunchPad, we also expose each component's stylesheets so you can import them directly. For a Remix example, click here.
core
package?To guarantee strict compatibility between the component packages your app uses, we suggest importing @launchpad-ui/core
instead of importing each component package separately.
If you choose to use LaunchPad via single component imports (e.g. @launchpad-ui/button
) on its own, there are two things to be aware of:
View the list of component NPM packages here: https://www.npmjs.com/search?q=%40launchpad-ui
To feature flag and test a pre-release version of a component, first install the pre-release using an alias:
$ yarn add @launchpad-ui/alert-beta@npm:@launchpad-ui/alert@0.10.0-beta.0
Then import and use the pre-release version alongside the version from core
:
import { Alert, AlertKind } from '@launchpad-ui/core';
import { Alert as BetaAlert } from '@launchpad-ui/alert-beta';
...
if (enableNewAlert()) {
return (
<BetaAlert>...</BetaAlert>
);
}
return (
<Alert kind={AlertKind.ERROR}>
An unexpected error occurred.
</Alert>
)
FAQs
Contains all LaunchPad design system packages.
The npm package @launchpad-ui/core receives a total of 24,783 weekly downloads. As such, @launchpad-ui/core popularity was classified as popular.
We found that @launchpad-ui/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.