npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@launchacademy/voyager

v0.2.1

Published

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.

Downloads

8

Readme

Voyager

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.

Set Up

clone repo git clone

run yarn install

run yarn run storybook

Storybook will launch in your browser.

Using Voyager

  • Rendered state of UI components will live in the theme folder as a story
  • If you're adding a new component please search the theme folder for a story that's already created and add the new component to the according folder.
  • If you don't find what you're looking for please create a new folder and add a stories.mdx file, styles, and the according React components.

Styling and Naming Conventions

The CSS files should be camelCase

  • featureList.css

Your stories file should follow the naming convention of the folder you created and capitalized

  • FeatureList.stories.mdx

The styling in your CSS should follow BEM (Block Element Modifier). Our specific set up is below:

.block__element_modifier

How to Use BEM in Voyager:
  • You have a card block with a custom background named danger
  • This card block has the elements image, header, and body
  • The body has a custom text color named fancy

Here 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>