
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@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.
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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.