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

@gamention/pulse-elements

v0.2.1

Published

Drop-in web components for real-time collaboration — comments, cursors, presence, drawing, and more

Downloads

3,476

Readme

@gamention/pulse-elements

Drop-in web components for real-time collaboration — comments, cursors, presence, drawing, notifications, and more. Built with Lit, works with any framework.

Installation

npm install @gamention/pulse-elements

Quick Start

Option 1: Single Widget (Recommended)

One tag gives you everything — comments, cursors, presence, drawing, notifications, pins, and activity feed:

<pulse-widget
  api-key="pk_..."
  token="YOUR_JWT_TOKEN"
  room="my-page"
  endpoint="wss://pulse.hire.rest"
></pulse-widget>

<script type="module">
  import '@gamention/pulse-elements';
</script>

Option 2: CDN (No Build Step)

<script src="https://pulse.hire.rest/sdk/pulse.js"></script>

<pulse-widget
  api-key="pk_..."
  token="YOUR_JWT_TOKEN"
  room="my-page"
  endpoint="wss://pulse.hire.rest"
></pulse-widget>

Option 3: Framework Integration

React:

import '@gamention/pulse-elements';

function App() {
  return (
    <pulse-widget
      api-key="pk_..."
      token={token}
      room="dashboard"
      endpoint="wss://pulse.hire.rest"
    />
  );
}

Vue:

<template>
  <pulse-widget
    :api-key="apiKey"
    :token="token"
    room="dashboard"
    endpoint="wss://pulse.hire.rest"
  />
</template>

<script setup>
import '@gamention/pulse-elements';
</script>

Features

| Feature | Description | |---------|-------------| | Comments | Threaded comments with @mentions, edit/delete, reactions | | Pin Anywhere | Click anywhere on the page to pin a comment (element-anchored, works across viewports) | | Live Cursors | See other users' cursors in real-time | | Presence | Online/idle status with avatars | | Drawing | Freehand annotations with auto-fade (pen pressure support) | | Notifications | Bell icon with unread badge for replies, mentions, reactions | | Activity Feed | Chronological room activity log | | Media Attachments | Image uploads with lightbox, audio notes (WhatsApp-style), video notes (Telegram-style) | | Follow Mode | Click an avatar to auto-scroll with another user | | Mobile Support | Touch/pen events, responsive bottom-sheet panels, 44px touch targets |

Widget Configuration

<pulse-widget
  api-key="pk_..."        <!-- Publishable API key -->
  token="..."             <!-- JWT from your backend via POST /auth/token -->
  room="page-id"          <!-- Room identifier (one per page/view) -->
  endpoint="wss://..."    <!-- Your Pulse server URL -->
  position="bottom-right" <!-- bottom-right | bottom-left | top-right | top-left -->
  display="floating"      <!-- floating (fixed position) | inline (in page flow) -->
></pulse-widget>

Theming

Override CSS custom properties to match your brand:

pulse-widget {
  --pulse-primary: #e11d48;
  --pulse-bg: #ffffff;
  --pulse-text: #0f172a;
  --pulse-border: #e2e8f0;
  --pulse-radius: 12px;
  --pulse-font: 'Inter', sans-serif;
}

Auth Flow

Your backend mints JWT tokens using a secret key:

curl -X POST https://pulse.hire.rest/auth/token \
  -H "Authorization: Bearer sk_your_secret_key" \
  -H "Content-Type: application/json" \
  -d '{"userId": "user-123", "name": "Alice"}'

Pass the returned token to the widget's token attribute.

Documentation

Full docs at pulse.hire.rest/docs

Related Packages

License

MIT