
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
simple-search-js
Advanced tools
JavaScript module that makes it even easier to consume the Simple Search Service API and enhance your web page.
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.
Download and include simplesearch.js in your HTML file:
<script type="text/javascript" src="simplesearch.js"></script>
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 - (Required) 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 - (Required) 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)
The callback is fired right before a search request is made.
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
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"
}
| Name | Type | Descriptions |
|---|---|---|
| inputField | string or HTML DOM element | Required - 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. |
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.
Paging is supported by the module using a Next/Prev page pattern. To get the next page of results:
simplesearch.next();
Paging is supported by the module using a Next/Previous page pattern. To get the previous page of results:
simplesearch.prev();
The HTML fragments generated by the module and inserted into the page are as follows:
<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>
<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">
<p>
<span>field name</span>
<span>value</span>
</p>
.
.
.
</li>
.
.
.
</ul>
<div class="simplesearch-paging">
<button class="simplesearch-more">More</button>
</div>
</div>
<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>
Examples can be found in the /demo folder of the respository.
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).
FAQs
JavaScript module that makes it even easier to consume the Simple Search Service API and enhance your web page.
We found that simple-search-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.