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

offline-form

v0.2.3

Published

Auto-save HTML forms with offline detection and retry queue. Zero dependency, < 3kb gzip.

Readme

offline-form.js

Auto-save HTML forms with offline detection and automatic retry. Zero dependency, < 3kb gzip.

npm version license gzip size

The problem: Users fill out a long form, lose their connection (or close the tab by mistake), and lose everything.

The solution: 2 lines of code.


Install

npm install offline-form

Or use the CDN (no install needed):

<script type="module">
  import OfflineForm from 'https://cdn.jsdelivr.net/npm/offline-form/src/offline-form.js'
</script>

Quick start

<form id="my-form" action="/api/submit" method="POST">
  <input name="email" type="email" placeholder="Email" />
  <textarea name="message"></textarea>
  <button type="submit">Send</button>
</form>

<script type="module">
  import OfflineForm from 'offline-form'

  OfflineForm.watch('#my-form')
</script>

That's it. The form now:

  • Auto-saves every keystroke (debounced)
  • Restores data on page reload
  • Detects when the user goes offline
  • Retries the submit automatically when connection is back

Options

OfflineForm.watch('#my-form', {
  debounce:   800,       // ms between each save (default: 800)
  key:        'checkout',// custom storage key (default: auto-generated)
  toast:      true,      // show a subtle restore notification (default: true)
  autoSubmit: false,     // auto-retry submit on reconnection (default: false)
  onSave:    (data)  => console.log('Saved', data),
  onRestore: (data)  => console.log('Restored', data),
  onRetry:   (item)  => console.log('Retrying', item.action),
})

| Option | Type | Default | Description | |---|---|---|---| | debounce | number | 800 | Delay in ms between saves | | key | string | auto | Custom localStorage key | | toast | boolean | true | Show restore notification | | autoSubmit | boolean | false | Auto-retry submit on reconnect | | onSave | function | null | Called after each save | | onRestore | function | null | Called after data restore | | onRetry | function | null | Called before each retry attempt |


Methods

// Stop watching a form
OfflineForm.unwatch('#my-form')

// Clear saved data for a form
OfflineForm.clear('#my-form')

// Get all watched forms and their cached data
OfflineForm.getAll()
// → [{ form, key, data }]

Framework usage

React

import OfflineForm from 'offline-form'
import { useEffect } from 'react'

function ContactForm() {
  useEffect(() => {
    OfflineForm.watch('#contact', { autoSubmit: true })
    return () => OfflineForm.unwatch('#contact')
  }, [])

  return (
    <form id="contact" action="/api/contact" method="POST">
      <input name="email" type="email" />
      <textarea name="message" />
      <button type="submit">Send</button>
    </form>
  )
}

Vue

<script setup>
import OfflineForm from 'offline-form'
import { onMounted, onUnmounted } from 'vue'

onMounted(() => OfflineForm.watch('#my-form', { toast: true }))
onUnmounted(() => OfflineForm.unwatch('#my-form'))
</script>

Plain HTML (CDN)

<script type="module">
  import OfflineForm from 'https://cdn.jsdelivr.net/npm/offline-form/src/offline-form.js'
  OfflineForm.watch('#my-form')
</script>

How it works

User types → debounce 800ms → serialize fields → localStorage
                                                       ↓
Page reload ──────────────────────────────────→ restore fields + toast

User submits (online)  → submit normally → clear cache
User submits (offline) → queue in localStorage → show banner
Connection back        → retry fetch → clear cache on success

Supported field types

| Type | Saved | Restored | |---|---|---| | text, email, tel, url, number | ✅ | ✅ | | textarea | ✅ | ✅ | | select | ✅ | ✅ | | checkbox | ✅ | ✅ | | radio | ✅ | ✅ | | file | ❌ (not serializable) | ❌ |


Browser support

All modern browsers. No polyfill needed.

| Chrome | Firefox | Safari | Edge | |---|---|---|---| | ✅ 61+ | ✅ 60+ | ✅ 10.1+ | ✅ 16+ |


License

MIT © TwinMi Studio