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

wvveskit

v1.0.1

Published

A lightweight modal step-through component for guiding users

Readme

wvvesKit

A lightweight modal popup for creating step-by-step tutorials and onboarding experiences.

Features

  • 🎯 Step-by-step tutorials - Guide users through complex workflows
  • 🎨 Customizable themes - Match your brand colors and styles
  • Interactive options - Allow users to select multiple choices per step
  • 📱 Responsive design - Works on all screen sizes
  • 🚀 Zero dependencies - Pure vanilla JavaScript
  • 💫 Smooth animations - Elegant transitions between steps

Installation

npm install wvveskit

Quick Start

const wvveskit = require('wvveskit');

const tutorial = new wvveskit({
  title: 'Getting Started',
  steps: [
    {
      content: 'Welcome to our app! Let\'s get you started.',
    },
    {
      content: 'What would you like to do first?',
      options: [
        'Create a new project',
        'Import existing data',
        'Browse templates'
      ]
    }
  ]
});

tutorial.init();

API Reference

Constructor Options

new wvveskit({
  title: 'Assistant',           // Global title displayed in header
  steps: [],                    // Array of step objects
  theme: {                      // Optional theme customization
    backgroundColor: '#ffffff',
    textColor: '#333333',
    buttonBg: 'rgba(0, 0, 0, 0.1)',
    buttonHoverBg: 'rgba(0, 0, 0, 0.15)',
    borderColor: '#cccccc',
    borderRadius: '16px',
    buttonRadius: '12px'
  }
})

Step Object Structure

{
  content: 'Step description',   // Main text content
  options: [                     // Optional array of selectable options
    'Option 1',
    'Option 2',
    { text: 'Custom Option' }
  ]
}

Methods

  • init() - Initialize and show the tutorial
  • next() - Navigate to next step
  • prev() - Navigate to previous step
  • close() - Close the tutorial
  • getSelectedOptions() - Returns object with selected options by step index
  • showStep(index) - Jump to specific step

Theme Customization

const tutorial = new wvveskit({
  theme: {
    backgroundColor: '#1a1a1a',
    textColor: '#ffffff',
    buttonBg: 'rgba(255, 255, 255, 0.1)',
    buttonHoverBg: 'rgba(255, 255, 255, 0.2)',
    borderColor: '#444444',
    borderRadius: '20px',
    buttonRadius: '10px'
  }
});

Examples

Basic Tutorial

const tutorial = new wvveskit({
  title: 'App Tour',
  steps: [
    { content: 'Welcome! This is your dashboard.' },
    { content: 'Here you can manage your projects.' },
    { content: 'Click here to create your first project.' }
  ]
});

tutorial.init();

Interactive Tutorial with Options

const tutorial = new wvveskit({
  title: 'Setup Wizard',
  steps: [
    {
      content: 'What type of project are you creating?',
      options: ['Web App', 'Mobile App', 'Desktop App']
    },
    {
      content: 'Which framework would you prefer?',
      options: ['React', 'Vue', 'Angular', 'Vanilla JS']
    },
    {
      content: 'Great! Your project is ready to go.'
    }
  ]
});

tutorial.init();

// Get user selections after completion
const selections = tutorial.getSelectedOptions();
console.log(selections); // { 0: [1], 1: [0] }

Dark Theme Example

const darkTutorial = new wvveskit({
  title: 'Dark Mode Tour',
  theme: {
    backgroundColor: '#2d3748',
    textColor: '#f7fafc',
    buttonBg: 'rgba(255, 255, 255, 0.1)',
    buttonHoverBg: 'rgba(255, 255, 255, 0.2)',
    borderColor: '#4a5568'
  },
  steps: [
    { content: 'Welcome to dark mode!' }
  ]
});

darkTutorial.init();

Browser Support

  • Chrome 60+
  • Firefox 55+
  • Safari 12+
  • Edge 79+

License

ISC