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

breathkit

v1.0.0

Published

Zero-dependency TypeScript library for guided breathing exercises

Readme

🌬 BreathKit

A zero-dependency TypeScript library for guided breathing exercises — box breathing, 4-7-8, cardiac coherence, and custom patterns.

npm version License: MIT

Live Demo →


Features

  • Zero dependencies — pure TypeScript, works anywhere
  • Built-in patterns — Cardiac Coherence, 4-7-8, Box Breathing
  • Fully customizable — define any pattern with any phases and durations
  • Event-driven APIonPhaseChange, onTick, onCycleComplete, onComplete
  • Simple state machinestart, pause, resume, stop

Installation

npm install breathkit

Quick Start

import { BreathKit, Patterns } from 'breathkit';

const kit = new BreathKit({
  pattern: Patterns.boxBreathing,
  cycles: 5,
  onPhaseChange: (phase) => {
    console.log(`→ ${phase.label} for ${phase.duration}s`);
  },
  onTick: (secondsRemaining) => {
    console.log(`  ${secondsRemaining}s remaining`);
  },
  onComplete: () => {
    console.log('Session complete!');
  },
});

kit.start();

Built-in Patterns

| Pattern | Phases | Best for | |---|---|---| | Patterns.coherenceCardiaque | 5s inhale / 5s exhale | Emotional regulation | | Patterns.fourSevenEight | 4s inhale / 7s hold / 8s exhale | Stress & sleep | | Patterns.boxBreathing | 4-4-4-4 | Focus & calm |


Custom Patterns

import { BreathKit, createPattern } from 'breathkit';

const myPattern = createPattern({
  id: 'my-pattern',
  name: 'My Pattern',
  description: 'A custom breathing pattern',
  phases: [
    { name: 'inhale', label: 'Breathe in',  duration: 4 },
    { name: 'hold',   label: 'Hold',        duration: 4 },
    { name: 'exhale', label: 'Breathe out', duration: 6 },
  ],
});

const kit = new BreathKit({ pattern: myPattern });
kit.start();

API

new BreathKit(options)

| Option | Type | Default | Description | |---|---|---|---| | pattern | Pattern | required | The breathing pattern to follow | | cycles | number | 0 | Number of cycles (0 = infinite) | | onPhaseChange | function | — | Called when a phase starts | | onTick | function | — | Called every second | | onCycleComplete | function | — | Called at the end of each cycle | | onComplete | function | — | Called when all cycles are done |

Methods

kit.start()   // Start the session
kit.pause()   // Pause (preserves state)
kit.resume()  // Resume after pause
kit.stop()    // Stop and reset

Getters

kit.state              // 'idle' | 'running' | 'paused' | 'completed'
kit.currentPhase       // Current Phase object
kit.currentPhaseIndex  // Index within the pattern
kit.currentCycle       // Current cycle number (1-based)
kit.secondsRemaining   // Seconds left in current phase

Use in a browser (no bundler)

The demo/ folder shows a complete vanilla JS implementation you can use as a starting point. Just copy the class from demo/index.html — no build step needed.


License

MIT