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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@goboldlyforward/starwarsintro

v1.1.0

Published

A pure CSS library for creating a Star Wars-style intro crawl. No JavaScript dependencies.

Readme

starwarsintro.css

A pure CSS library for creating a Star Wars-style intro crawl. No JavaScript dependencies.

Note on naming: the name references a third-party trademark. Kept as-is — this is a non-commercial homage plugin, low risk in practice.

Demo

goboldlyforward.github.io/starwarsintro

What it does

Drops a Star Wars-style scrolling intro crawl onto any page using pure CSS animations. Useful for fan sites, movie marathons, browser-game intros, presentations, or any project where the recognizable crawl effect fits.

Install

npm install @goboldlyforward/starwarsintro
@import "@goboldlyforward/starwarsintro/starwarsintro.css";

Or link it straight from a CDN — the star-field background (img/stars-bg.jpg) ships with the package and loads automatically:

<link rel="stylesheet" href="https://unpkg.com/@goboldlyforward/starwarsintro/starwarsintro.css">

The stylesheet references img/stars-bg.jpg relatively, so if you self-host, keep that image next to the CSS (both are in this repo).

Usage

Wrap your intro content in the structure below:

<div class="star-wars-intro">

  <!-- Blue intro text -->
  <p class="intro-text">
    A few days ago, during...
  </p>

  <!-- Logo image or text -->
  <h2 class="main-logo">
    <img src="img/your-logo.png">
  </h2>

  <!-- Scrolling content -->
  <div class="main-content">
    <div class="title-content">
      <p class="content-header">Your Title</p>
      <p class="content-body">
        Your scrolling story goes here. As it scrolls, the text recedes into the distance and fades out, in the iconic opening-crawl style.
      </p>
    </div>
  </div>
</div>

Roadmap

This plugin is undergoing modernization. Tracked work:

  • [x] LICENSE (MIT)
  • [x] .gitignore
  • [x] README
  • [x] package.json
  • [x] Update CSS header (rebrand Polar Notion → Go Boldly Forward)
  • [x] Remove legacy artifacts (.DS_Store, starwarsintro.css.zip)
  • [x] Strip obsolete vendor prefixes (-webkit/-moz/-ms/-o) and fix broken gradient syntax
  • [x] Update demo page (drop legacy jQuery + Bootstrap, drop JotForm, native smooth-scroll, rebrand)
  • [x] Refresh demo with the shared Go Boldly Forward plugin design system (light + dark, Inter, .gbf-* markup, yellow accent)
  • [x] Publish to npm (as @goboldlyforward/starwarsintro)
  • [ ] Optional starwarsintro-rails gem wrapper
  • [ ] GitHub Actions CI (stylelint)

License

MIT — see LICENSE.