
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@launchacademy/voyager
Advanced tools
Voyager is the home to components for Launch Academy, Inc.'s main static site. This was assembled using [Storybook](https://storybook.js.org/), and links to a [Gatsby](https://www.gatsbyjs.com/) static site.
Voyager is the home to components for Launch Academy, Inc.'s main static site. This was assembled using Storybook, and links to a Gatsby static site.
clone repo git clone
run yarn install
run yarn run storybook
Storybook will launch in your browser.
theme folder as a story
stories.mdx file, styles, and the according React components.The CSS files should be camelCase
featureList.cssYour stories file should follow the naming convention of the folder you created and capitalized
FeatureList.stories.mdxThe styling in your CSS should follow BEM (Block Element Modifier). Our specific set up is below:
.block__element_modifier
dangerfancyHere is the CSS
.card {
& .card__image {}
& .card__header {}
& .card__body {}
& .card__body_fancy {
color: green;
}
}
.card_danger {
background-color: red;
}
Here is the HTML
<article className="card card_danger">
<img className="card__image" />
<h1 className="card__header">TEST</h1>
<p className="card__body card__body_fancy">some info about this fancy paragraph.</p>
</article>
FAQs
Voyager is the home to components for Launch Academy, Inc.'s main static site. This was assembled using [Storybook](https://storybook.js.org/), and links to a [Gatsby](https://www.gatsbyjs.com/) static site.
We found that @launchacademy/voyager demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.