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

@coderevivehq/selectize

v0.15.4

Published

Community-maintained fork of Selectize, a jQuery-based custom select UI control.

Downloads

284

Readme

Maintained by CodeReviveHQ

This fork keeps Selectize available as @coderevivehq/selectize.

Security patches are our highest priority. We also review bug reports, feature requests, and suggestions from the community.

Selectize is an extensible jQuery custom select control. It supports tagging, autocomplete, contact lists, country selectors, and other rich input experiences.

The project is based on the original Selectize repository. We are grateful to its authors and contributors.

Quick links

Installation

npm install @coderevivehq/selectize

CDN

jsDelivr serves the latest files published in the CodeReviveHQ npm package. These links update automatically when a new version is published.

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/@coderevivehq/selectize@latest/dist/css/selectize.default.css"
>

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@coderevivehq/selectize@latest/dist/js/selectize.min.js"></script>

For reproducible production builds, replace latest with a specific release number.

Features

  • Smart Option Searching / Ranking Options are efficiently scored and sorted on-the-fly (using sifter). Want to search for an item's title and description? No problem.
  • Caret between items Order matters sometimes. Use the and arrow keys to move between selected items.
  • Select & delete multiple items at once Hold down option on Mac or ctrl on Windows to select more than one item to delete.
  • Díåcritîçs supported Great for international environments.
  • Item creation Allow users to create items on the fly (async saving is supported; the control locks until the callback is fired).
  • Remote data loading For when you have thousands of options and want them provided by the server as the user types.
  • Clean API & code Interface with it and make modifications easily. Pull requests are always welcome!
  • Extensible Plugin API for developing custom features (uses microplugin).
  • Touch Support Plays nice with iOS 5+ devices.

Dependencies

  • jquery (1.7 and greater), as peer dependency
    • Note: it is installed automatically in development, or in projects using NPM 1 or 2. When using NPM from version 3 on, just a warning is thrown and the user needs to manually install an explicit version in their own project (e.g. npm install --save [email protected]).

Optional:

Manual installation

All pre-built files needed to use Selectize can be found in the "dist" folder.

If you're looking to get started with minimal fuss, include selectize.min.js (bundles Sifter and Microplugin dependencies – also available un-minified for debugging, just remove the .min part) and css/selectize.default.css.

Usage

$("select").selectize(options);

The available options are documented here.

Contributing

Contributions are welcome. Every change is reviewed through a pull request.

  1. Open an issue before starting a large change.
  2. Keep each pull request focused on one fix or feature.
  3. Add tests for behavior changes.
  4. Update the documentation when behavior changes.
  5. Add a changelog entry for user-facing changes.

Tests

Please ensure all the tests pass:

npm test # defaults to ChromeHeadless
BROWSERS=Firefox npm test
BROWSERS=Firefox,Chrome npm test
BROWSERS=Firefox,Chrome,Safari npm test

Local development

To run Selectize locally:

npm start

You can then run the examples at https://loopback.website:4000/.

License

Copyright © 2013–2016 Brian Reavis & Contributors
Copyright © 2020-2022 Selectize Team & Contributors

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.