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

svelte-tel-input

v4.0.2

Published

svelte-tel-input

Readme

svelte-tel-input

npm version license

A headless, fully customizable Svelte 5 phone input toolkit. All the ingredients to parse, format, and validate international phone numbers — you build the UI. Store in E.164. Ship with any CSS framework, design system, or custom markup.

Documentation · Playground · Changelog


Features

  • E.164 storage — one canonical format, always searchable and SMS-ready
  • Auto-detect country from dial code (+44GB)
  • Smart formatting — international display with cursor position preservation
  • Validation — powered with granular error types
  • Auto placeholder — country-specific example numbers
  • Allowed countries — restrict to a subset of country codes
  • Lock country — prevent country switching via dial codes
  • Schema validation — Zod / Valibot / Yup helpers via svelte-tel-input/validators
  • SSR / SSG compatible
  • Svelte 5 runes$bindable props, $state, $derived
  • Accessiblearia-invalid auto-set, ARIA attribute passthrough, type="tel"
  • Headless & unstyled — zero built-in styles; bring Tailwind, CSS Modules, or plain CSS
  • Fully customizable UI — you own the markup; the library owns the logic

Install

npm install svelte-tel-input
# or
pnpm add svelte-tel-input
# or
yarn add svelte-tel-input

Requires Svelte 5 and Node.js >= 22

Quick start

<script lang="ts">
  import { TelInput, countries } from 'svelte-tel-input';
  import type { CountryCode } from 'svelte-tel-input/types';

  let country: CountryCode | null = $state('HU');
  let value = $state('');
  let valid = $state(true);
</script>

<select bind:value={country} aria-label="Country">
  <option value={null}>Select country</option>
  {#each countries as c (c.id)}
    <option value={c.iso2}>{c.name} (+{c.dialCode})</option>
  {/each}
</select>

<TelInput bind:country bind:value bind:valid />

{#if !valid}
  <p role="alert">Invalid phone number</p>
{/if}

See the Quick Start guide for a complete walkthrough.

Documentation

Full API reference, options, events, types, and examples are on the documentation site:

Support

License

MIT

Acknowledgements

Phone number parsing and validation is powered by libphonenumber-js by catamphetamine and its contributors. This project wouldn't be possible without their work. Thank you for their work.