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-tags-input

v7.0.1

Published

Fully customizable Svelte component to enter tags.

Downloads

8,877

Readme


Features

  • Keyboard-driven — Add tags with Enter/Tab, remove with Backspace, navigate autocomplete with Arrow keys
  • Autocomplete — Array or async function, with filtering and custom display keys
  • Paste & drop — Paste comma-separated text or drag-and-drop tags
  • Accessible — ARIA-friendly, screen reader labels, keyboard navigation
  • Flexible — Max tags, unique-only, custom validation, blur behavior
  • Svelte 5 — Built with runes ($props, $state, $derived, $bindable)

Requirements

  • Svelte 5.x — This package requires Svelte 5 (peer dependency)

Install

npm install svelte-tags-input

Quick Start

<script>
  import Tags from 'svelte-tags-input';

  let tags = $state([]);
</script>

<Tags bind:tags placeholder="Type and press Enter..." />

Options

| Prop | Type | Default | Description | |------|------|---------|-------------| | bind:tags | Array | [] | Two-way bound array of tags | | addKeys | number[] | [13] (Enter) | Keys that add a tag | | removeKeys | number[] | [8] (Backspace) | Keys that remove the last tag | | placeholder | string | '' | Input placeholder text | | maxTags | number \| false | false | Maximum number of tags allowed | | onlyUnique | boolean | false | Reject duplicate tags | | allowPaste | boolean | false | Enable pasting tags (split by splitWith) | | allowDrop | boolean | false | Enable drag-and-drop of tags | | splitWith | string | ',' | Character to split pasted/dropped text | | autoComplete | Array \| (value: string) => any | false | Suggestions array or async fetcher | | autoCompleteKey | string | false | Key for object items in autoComplete | | autoCompleteShowKey | string | autoCompleteKey | Key to display (when different from search key) | | autoCompleteFilter | boolean | true | Filter suggestions client-side (disable for API responses) | | autoCompleteStartFocused | boolean | false | Focus first suggestion without typing | | onlyAutocomplete | boolean | false | Only accept tags from the autocomplete list | | minChars | number | 1 | Min chars before showing autocomplete (0 = show all on click) | | allowBlur | boolean | false | Add tag on input blur | | cleanOnBlur | boolean | false | Clear input on blur (tags kept) | | disable | boolean | false | Disable the input | | readonly | boolean | false | Read-only display mode | | name | string | 'svelte-tags-input' | Input name attribute | | id | string | random | Input id attribute | | labelText | string | name | Accessible label text | | labelShow | boolean | false | Show visible label | | onTagAdded | (tag, tags) => void | () => {} | Called when a tag is added | | onTagRemoved | (tag, tags) => void | () => {} | Called when a tag is removed | | onTagClick | (tag) => void | () => {} | Called when a tag is clicked | | customValidation | (tag) => boolean | false | Custom validation before adding |

Key codes reference

Examples

Basic with autocomplete

<script>
  import Tags from 'svelte-tags-input';

  let tags = $state([]);
  const suggestions = ['Apple', 'Banana', 'Cherry', 'Date', 'Elderberry'];
</script>

<Tags
  bind:tags
  placeholder="Pick a fruit..."
  autoComplete={suggestions}
  onlyUnique
/>

Full configuration

<script>
  import Tags from 'svelte-tags-input';

  let tags = $state([]);
  const countries = ['Argentina', 'Brazil', 'Chile', 'Colombia', 'Mexico'];
</script>

<Tags
  bind:tags
  addKeys={[9]}
  removeKeys={[27]}
  maxTags={5}
  allowPaste
  allowDrop
  splitWith="/"
  onlyUnique
  placeholder="Add a country..."
  autoComplete={countries}
  minChars={2}
  onlyAutocomplete
  allowBlur
  cleanOnBlur
  labelText="Countries"
  labelShow
  onTagAdded={(tag, t) => console.log('Added:', tag, t)}
  onTagRemoved={(tag, t) => console.log('Removed:', tag, t)}
  onTagClick={(tag) => console.log('Clicked:', tag)}
  customValidation={(tag) => tag.length >= 3}
/>

Async autocomplete (API)

<script>
  import Tags from 'svelte-tags-input';

  let tags = $state([]);

  async function fetchCountries(query) {
    const res = await fetch(
	    `https://restcountries.com/v2/name/${query}?fields=name,alpha3Code,flag`
    );
    const data = await res.json();
    return data;
  }
</script>

<Tags
  bind:tags
  autoComplete={fetchCountries}
  autoCompleteKey="name"
  autoCompleteShowKey="alpha3Code"
  autoCompleteFilter={false}
/>

License

MIT © Agustín