
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@launchpadlab/lp-components
Advanced tools
Reusable UI components for React apps.
import React from 'react'
import { Spinner } from '@launchpadlab/lp-components'
function MyLoadingComponent({ data }) {
return data ? <div>{data}</div> : <Spinner />
}
This library contains components for status indicators, custom inputs, flash messages and more. A full list of available components can be found in the documentation or in the interactive component playground.
Documentation and usage info can be found in docs.md.
This package follows the Opex NPM package guidelines. Please refer to the linked document for information on contributing, testing and versioning.
This library uses size-limit to prevent size bloat. The yarn size script is run in CI to check that the package size is under the limit specified in .size-limit.js. For a visualization of this package's relative dependency sizes, you can run yarn size --why.
This library uses React Storybook to render components in a development sandbox. In order to view the storybook, run yarn run storybook and navigate to the localhost port indicated.
Every new component added to this library should be accompanied by a new story in the storybook.
When pull requests are submitted, a Heroku review app will be deployed containing the revised storybook so that reviewers can view the changes made.
The DateInput component requires special styles in order to render correctly. These styles most be imported from the react-datepicker folder in node_modules and imported into your sass. To do this, make the following changes to your webpack.config.js and application.scss:
webpack.config.js:Add a line near the top of the file specifying the path to the react-datepicker styles:
const datePickerPath = path.resolve(__dirname, '../node_modules/react-datepicker/src/stylesheets')
Then, add this path to the includePaths array of the sass loader:
{
test: /.scss$/,
loader: "sass",
query: { includePaths: [ ... , datePickerPath ] }
}
application.scss:Import the react-datepicker styles by adding this line:
@import "datepicker";
FAQs
Our Components
We found that @launchpadlab/lp-components demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.