
Security News
Inside Lodash’s Security Reset and Maintenance Reboot
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.
@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 2,946 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
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.

Security News
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.