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 🙏

© 2025 – Pkg Stats / Ryan Hefner

tourbit

v0.0.2

Published

Readme

Tourbit

Many applications struggle with effective user onboarding and feature discovery. Static tutorials or extensive documentation often fail to engage users, leading to poor feature adoption.

Tourbit is a customizable, interactive guide designed to introduce users to key features of your web application. Built with React and TypeScript, it creates an engaging onboarding experience by guiding users through your app's functionality step-by-step.

tourbit display

  • Providing an interactive, guided tour of your application's key features
  • Highlighting specific elements on the page to draw user attention
  • Offering a step-by-step approach that doesn't overwhelm users
  • Allowing users to explore the application while learning about its features

Features

  1. Interactive Popup: A sleek, animated popup that moves through your webpage, explaining features.
  2. Progress Tracking: Shows users their current position in the tour (e.g., "Step 2 of 5").
  3. Customizable Styles: Easy styling customization to match your application's design.
  4. Keyboard Navigation: Supports navigation using arrow keys and closing with the Escape key.
  5. Element Highlighting: Draws attention to the current feature with an overlay effect.
  6. Responsive Positioning: Adjusts the popup's position to ensure visibility on all screen sizes.
  7. Progress Persistence: Saves the user's progress, allowing them to resume the tour later.
  8. Accessibility: Designed with accessibility in mind, ensuring all users can benefit from the tour.

Use Case Example

Here's how you can implement tourbit in a React application:

  npx tourbit init
import React, { useState } from "react";
import FeatureTour from "./FeatureTour";

const App: React.FC = () => {
  const [showTour, setShowTour] = useState(true);

  const tourSteps = [
    {
      selector: "#dashboard",
      title: "Dashboard Overview",
      content:
        "Welcome to your personalized dashboard. Here you can see all your key metrics at a glance.",
    },
    {
      selector: "#data-visualization",
      title: "Data Visualization",
      content:
        "This chart shows your performance trends over time. Click on any data point for more details.",
    },
    {
      selector: "#quick-actions",
      title: "Quick Actions",
      content:
        "Use these buttons to quickly add new entries, generate reports, or adjust your settings.",
    },
  ];

  return (
    <div>
      <header>My Awesome App</header>
      <main>
        <section id="dashboard">{/* Dashboard content */}</section>
        <section id="data-visualization">
          {/* Data visualization content */}
        </section>
        <section id="quick-actions">{/* Quick action buttons */}</section>
      </main>
      {showTour && (
        <FeatureTour
          steps={tourSteps}
          onComplete={() => setShowTour(false)}
          customStyles={{ backgroundColor: "#f0f4f8" }}
          persistKey="my-app-onboarding-tour"
        />
      )}
    </div>
  );
};

export default App;

In this example, the tourbit component guides new users through the main sections of a dashboard application. It highlights the dashboard overview, explains the data visualization feature, and introduces the quick action buttons. This approach helps users quickly understand the app's core functionality, potentially increasing engagement and user satisfaction.