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 🙏

© 2025 – Pkg Stats / Ryan Hefner

simple-search-js

v1.0.1

Published

JavaScript module that makes it even easier to consume the Simple Search Service API and enhance your web page.

Readme

SimpleSearchJS

SimpleSearchJS is a JavaScript module that makes it even easier to consume the Simple Search Service API and enhance your web page.

Once installed the module can be used to query the service and then have the responses automatically parsed, formatted, and placed onto the web page.

Apart from querying the Simple Search Service and returning the response, the SimpleSearchJS module includes some additional UI functionality.

  • Search requests from input: The module can be attached to any text input tag and automatically perform search requests when the ENTER key pressed (using the value of the input).

  • Search button: An element (e.g., button, link, etc) can be provided which would act as the search button and trigger a search. Alternatively, the module can be configured to automatically create the search button and append besides the input.

  • Facets as list: The search response can be parsed and facets formatted as an unordered list (i.e., ul) and the HTML fragment automatically inserted onto the web page.

  • Results as table: The search response can be parsed and results formatted as an HTML table (i.e., ul) and the fragment automatically inserted onto the web page.

  • Results as list: The search response can be parsed and results formatted as an unordered list (i.e., ul) and the HTML fragment automatically inserted onto the web page.

Install

Download and include simplesearch.js in your HTML file:

<script type="text/javascript" src="simplesearch.js"></script>

Usage

The module can be initialized via JavaScript or using HTML data attributes:

  • HTML data attributes

    <input type="text" data-simple-search="http://a-simple-search-service.com"
            data-search-results="#results .tablewrapper"
            data-search-list=".resultsListWrapper"
            data-search-facets="#facetsWrapper">

    data-simple-search - (Optional) the url for the Simple Search Service to connect to
    data-search-results - (Optional) the CSS selector for the element where the search results HTML (table) fragment should be inserted
    data-search-list - (Optional) the CSS selector for the element where the search results HTML (ul) fragment should be inserted
    data-search-facets - (Optional) the CSS selector for the element where the search facets HTML (ul) fragment should be inserted

  • Javascript

    var simplesearch = new SimpleSearch(serviceUrl, callbacks, selectors);

    serviceUrl - (Optional) the url for the Simple Search Service to connect to
    callbacks - (Optional) a JavaScript object containing the callback functions to call (e.g, onSuccess, onFail, etc)
    selectors - (Optional) a JavaScript object containing the CSS selectors (e.g., resultsTable, facetsList, etc)

When the DOMContentLoaded event is fired the SimpleSearchJS will check the page for the HTML data-* attributes. If none is found or the JavaScript file is added to the page after the event or the input (with data-* attributes) is added to the page after the event then the module would need to be initialized via JavaScript.

It is possible to use both approaches together. In such cases, for any parameters defined in both, the JavaScript value would supersede the data attribute value. The main difference between the two approaches is that callbacks are supported in JavaScript but not in the data attributes.

Callbacks

  • onBefore()

    The callback is fired right before a search request is made.

  • onSuccess(results)

    Fired when a search request completes successfully. The results argument passed is a JSON object containing the response from the Simple Search Service plus a few additional fields:

    {
       "data": {},
       "fields": [],
       "facets": [],
       "rest_uri": "",
       "time": 170,
       "paging": {
       		"bookmarks": [],
       		"hasMore": true
    	}
    }

    data - JSON response from the Simple Search Service
    fields - an array of available fields and field type (e.g., string, number. etc)
    facets - an array of the faceted fields and field type
    rest_uri - the URL used to make the request (e.g., http://a-simple-search-service.com/search?q=:)
    time - the time (in ms) it took for the request to complete
    paging.bookmarks - an array of bookmark IDs
    paging.hasMore - true if there is more content to retrieve

  • onFail(err)

    The callback is made when a search request fails or cannot be made. The err argument passed is a JSON object with an error and reason fields. For example:

    {
       "error": "bad_request",
       "reason": "Page out of bounds: No next page"
    }

Selectors

| Name | Type | Descriptions | |---|---|---| | inputField | string or HTML DOM element | Optional - The search input field. It may be an input HTML DOM element or a CSS selector string for the input element. For example, "#searchInput" to select an input with an ID of searchInput | | searchButton | boolean, string, or HTML DOM element | Optional - The search button. It may be an HTML DOM element, a CSS selector string for the element, or a boolean. If true a search button is created and appended beside the input. | resultsTable | string or HTML DOM element | Optional - Where the search results HTML (table) fragment is to be inserted. An HTML DOM element or a CSS selector string for the element. | resultsList | string or HTML DOM element | Optional - Where the search results HTML (ul) fragment is to be inserted. An HTML DOM element or a CSS selector string for the element. | facetsList | string or HTML DOM element | Optional - Where the search results facets HTML (ul) fragment is to be inserted. An HTML DOM element or a CSS selector string for the element.

API

search()

Searching is automatically performed when the ENTER key is pressed (with focus on the input) or when the search button is clicked. In addition, a search request can also be triggered programmatically:

simplesearch.search(queryString, limit);

queryString - (Required) the query to perform (e.g., *:*, city:Boston AND state:MA, etc.).
limit - (Optional) maximum number of results to return. If omitted the number of results returned depends on the Simple Search Service configuration.

next()

Paging is supported by the module using a Next/Prev page pattern. To get the next page of results:

simplesearch.next();

prev()

Paging is supported by the module using a Next/Previous page pattern. To get the previous page of results:

simplesearch.prev();

Fragments

The HTML fragments generated by the module and inserted into the page are as follows:

Search Results Table

<div class="simplesearch-results-table">
  <div class="simplesearch-count">
    <span>Showing x - y of z</span>
  </div>
  <div class="simplesearch-paging">
    <button class="simplesearch-prev">Prev</button>
    <button class="simplesearch-next">Next</button>
  </div>
  <table class="simplesearch-table">
    <thead>
      <tr>
        <th>field name</th>
        .
        .
        .
      </tr>
    </thead>
    <tbody>
      <tr>
        <td><span>value</span></td>
        .
        .
        .
      </tr>
      .
      .
      .
    </tbody>
  </table>
</div>

Search Result Unordered Lists

<div class="simplesearch-results-list">
  <div class="simplesearch-count">
    <span>Showing x of y</span>
  </div>
  <ul class="simplesearch-list">
    <li class="simplesearch-list-item">
      <dl>
        <dt class="simplesearch-field-*">field name</dt>
        <dd class="simplesearch-value-*">value</dd>
      </dl>
      .
      .
      .
    </li>
    .
    .
    .
  </ul>
  <div class="simplesearch-paging">
    <button class="simplesearch-more">More</button>
  </div>
</div>

Facets Unordered Lists

<div class="simplesearch-facets-list">
  <div>
    <h4 class="simplesearch-facet-key">facet name</h4>
    <ul class="simplesearch-facet-value-list">
      <li class="simplesearch-facet-value">
        <span class="simplesearch-facet-value-name" role="button" data-search-query="facetname:facetvalue">facet value</span>
        <span class="simplesearch-facet-value-count">(facet count)</span>
      </li>
      .
      .
      .
    </ul>
  </div>
  .
  .
  .
</div>

Demo

Examples can be found in the /demo folder of the respository.

Frameworks

The SimpleSearchJS module is vanilla JavaScript and does not require any additional libraries. It can therefore be easily intergrated.

However, for those preferring it, a jQuery plugin is also available. The jQuery plugin (jquery.simplesearch.js) is simply a wrapper around the vanilla JavaScript module (simplesearch.js).