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

onbrd

v1.0.0

Published

A lightweight, flexible onboarding engine for modern web apps. Elegant. Adaptable.

Readme

Onbrd.js

Onbrd.js is a lightweight JavaScript engine to create interactive onboarding experiences on web applications:

✅ Tooltips anchored to elements ✅ Modal steps (main steps) ✅ Highlights & guided tours ✅ Click triggers and form typing ✅ Supports cross-page onboarding ✅ Tiny footprint — no dependency except Popper.js v2 ✅ Works with any framework (vanilla JS, React, Vue...)

Perfect for SaaS platforms, Admin Dashboards, B2B tools, Internal apps.


✨ Key Features

Why Onbrd.js is more powerful than most onboarding tools:

✅ Supports both main modals and tooltipsClick interception: wait for a user click before progressing (ex: "Click Add User") ✅ Control whether click is passed through (passThrough: true|false) ✅ Typewriter effect: simulate typing in fields (ex: forms) ✅ NextCondition: dynamically enable Next button (ex: user must fill form) ✅ Auto scroll & highlightWaits for async content (waitForElement) ✅ Cross-page onboarding with persistence ✅ Tiny bundle, works with any stack: vanilla JS, React, Vue, Angular ✅ No runtime dependency except Popper.js (2kb gzipped) ✅ Full CSS customization and localization


🚀 Installation

via npm

npm install onbrd
import Onbrd from 'onbrd';
import 'onbrd/dist/onbrd.css';

via CDN

<link rel="stylesheet" href="onbrd.css" />
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="onbrd.js"></script>

🧩 Basic Usage

const onboarding = new Onbrd({
  steps: [
    { stepId: 'welcome', type: 'main', html: '<h2>Welcome!</h2><p>This is your onboarding tour.</p>' },
    { stepId: 'feature1', type: 'tooltip', selector: '#feature1', text: 'This is feature 1.', position: 'right' },
    { stepId: 'finish', type: 'main', html: '<h2>All done!</h2><p>You completed the tour.</p>' }
  ],
  autoStart: true
});

When autoStart: true is set, Onbrd waits for DOM ready and starts automatically.


⚙️ Configuration

| Option | Type | Description | | ------------------------- | ---------------- | ----------------------------------------------------------------------------- | | steps | Array | Ordered list of steps (see below) | | colors | Object | Customize primary, dark, overlay, background colors | | font | String | Font-family used by the UI | | labels | Object | Text labels for buttons | | storageKey | String \| null | Key used to persist progress in localStorage (or null for no persistence) | | storage | Storage | Custom storage object (optional) | | forceExitConfirm | Boolean | Ask confirmation before exiting the tour | | onStart | Function | Called when the tour starts | | onShowStep(step, index) | Function | Called when a step is displayed | | onComplete | Function | Called when last step is completed | | onExit | Function | Called when the tour ends | | onError(err, step) | Function | Called if a step cannot be displayed | | autoStart | Boolean | Start automatically (default: true) |


📚 Steps definition

Each step object can be:

  • type: 'main' → Modal step (centered dialog)
  • type: 'tooltip' → Anchored to a DOM element

Common properties for all steps:

| Property | Description | | ------------------- | -------------------------------------------------------------------------- | | stepId | Required identifier | | type | 'main' or 'tooltip' | | html or text | Content of the step | | selector | CSS selector for tooltip (required for tooltips) | | position | Tooltip position: 'top', 'bottom', 'left', 'right' | | captureClick | If true, waits for a click on target element | | passThrough | If false, original click is prevented (default: true) | | typewriter | Simulates typing inside input (tooltip) | | moreInfo | Optional extra HTML block in tooltip | | onEnter | Called when the step is displayed | | onLeave | Called when leaving the step | | onNext | Called when Next is clicked | | onPrev | Called when Prev is clicked | | goBack(cb) | For "go back" handling on captureClick steps | | waitForElement | Wait for element before showing (selector or function returning a promise) | | nextCondition | Enables Next button only when condition returns true | | skipHiddenElement | If true and element is hidden, skips step | | autoFocus | Focus input when using typewriter | | skipOnDisappear | If false, pauses if element disappears (default: skips) |


🔍 API Methods

| Method | Description | | ---------------------- | --------------------------------------------------- | | start() | Start the tour (resume progress if storage enabled) | | restart() | Restart from first step | | pause() / resume() | Pause / resume tour | | goToStep(idOrIndex) | Jump to a specific step | | isActive() | Check if tour is running | | enableCrossPage() | Enable cross-page persistence | | disableCrossPage() | Disable cross-page persistence |


🎨 Styling / Theming

Onbrd exposes the following CSS variables:

:root {
  --onb-primary: #0066ff;
  --onb-dark: #222222;
  --onb-font: Inter, sans-serif;
  --onb-overlay: rgba(10,10,10,0.1);
  --onb-bg: rgba(255,255,255,0.92);
}

You can override them globally or dynamically.


🌍 Labels & Localization

You can customize all UI labels:

labels: {
  next: 'Suivant →',
  prev: '← Retour',
  skip: 'Passer',
  close: '✖',
  step: 'Étape',
  of: 'sur',
  confirmExit: 'Quitter le tutoriel ?'
}

🔄 Cross-page onboarding

  1. Load plugin:
<script src="onbrd-crosspage.js"></script>
  1. Enable in code:
registerCrossPage(Onbrd);
onboarding.enableCrossPage();
onboarding.start();

🏗️ Example: Admin Dashboard Tour

steps: [
  { stepId: 'welcome', type: 'main', html: '<h2>Welcome to your Admin Dashboard</h2>' },
  { stepId: 'sidebar', type: 'tooltip', selector: '#sidebar', text: 'Navigation menu', position: 'right' },
  { stepId: 'btn-add', type: 'tooltip', selector: '#btn-add-user', text: 'Click to add user', captureClick: true, passThrough: false },
  { stepId: 'form-name', type: 'tooltip', selector: '#input-name', text: 'Enter user name', typewriter: 'Alice', autoFocus: true },
  { stepId: 'finish', type: 'main', html: '<h2>Tour complete!</h2>' }
]

⚠️ Requirements

Onbrd requires Popper.js v2:

<script src="https://unpkg.com/@popperjs/core@2"></script>

📁 Project structure

src/
dist/
README.md
CHANGELOG.md
package.json
onbrd.js
onbrd-crosspage.js
onbrd.css

📃 License & Commercial Use

MIT License

You can use, copy, and modify Onbrd for free for:

✅ Personal ✅ Educational ✅ Non-profit ✅ Open-source projects


Commercial use requires a license (per company): 👉 $30 one-time lifetimePayPal: https://paypal.me/brathelot

An invoice will be issued to the company name and email you provide.

Examples of commercial use:

  • Proprietary SaaS
  • B2B or internal tools
  • Client projects
  • Commercial websites/apps

You may not resell, redistribute, or sublicense the library.


💬 Support & Contact

  • Issues and PR on GitHub
  • Email: benjamin [at] rathelot [dot] com (no spam please!)

🚫 Disclaimer

The software is provided as-is, without warranty of any kind, express or implied. In no event shall the author be liable for any damages, losses or claims of any kind.


👉 Ready to improve your onboarding? See the try me.html demo! 🚀


Copyright (c) 2025 Benjamin Rathelot

Permission is granted to any person obtaining a copy of this software (the "Software") to use, copy, and modify it for free for personal, educational, non-profit, or open-source projects.

For any commercial use (including but not limited to use in proprietary applications, SaaS, client work, or any activity generating revenue), a one-time lifetime license is required per company.

License purchase: https://paypal.me/brathelot (30 USD) The license will be issued under the company name provided at checkout and sent to your email.

Redistribution, sublicensing, or resale of the Software or its derivatives is not permitted.

The Software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors be liable for any claim, damages, or other liability.

Thank you for supporting this project!