Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

doofinder

Package Overview
Dependencies
Maintainers
1
Versions
198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

doofinder

Javascript Library for Doofinder Search API

  • 7.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
88
decreased by-32.82%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

Doofinder Library

A.K.A. js-doofinder, or just doofinder, this library makes easy to perform requests to Doofinder's search service and customize the way you present results.

Installation

The library can be installed via package managers or directly pointing to a file in jsDelivr's CDN.

$ yarn add doofinder

NPM

$ npm install doofinder
ESM
import { Client } from 'doofinder';
CommonJS
const { Client } = require('doofinder/commonjs');

CDN

You can include the library directly in your website:

<!-- Javascript -->
<script src="//cdn.jsdelivr.net/npm/doofinder@latest/dist/doofinder.min.js"></script>

TL;DR

If you only want to know how this is structured, without the details, here we go.

The library provides:

  • A Client class to perform requests to the Doofinder service.
  • A Query class which provides an easy-to-use object to prepare the queries to the Doofinder Client before sending anything.
  • A Result class to wrap the response from the server and access to the data through easy to use methods.
  • A ClientRepo singleton that holds a pool of Doofinder Client in each zone and helps instantiating them.

Quick Start

The project includes a demo you can use as inspiration. To take a look and see things you can do with it:

  1. Download the entire project from Github.
  2. Make sure you've got Node 10.x running in your system.
  3. From the root of the project:
    1. install dependencies with $ yarn install or $ npm install.
  4. To run the tests, execute: $ yarn test.

The demo markup is inside index.html and the related Javascript code can be found at demo/demo.js.

NOTICE: The demo uses a test search engine but you can use a different one, just change the value of the HASHID variable you will find inside index.html.

IMPORTANT: Doofinder protects API calls with CORS. If you change the HASHID variable defined in index.html you will have to allow localhost for your search engine in Doofinder Admin.

Documentation

IMPORTANT: This is a work in progress.

https://doofinder.github.io/js-doofinder/

Browser Support

BrowserStandaloneES Module
Edge15+16+
Firefox32+60+
Chrome55+61+
Safari11+11+
Opera42+48+
Chrome for Android76+76+
Firefox for Android68+68+
UC Browser for Android12.12+12.12+
Safari for iOS11+11+

FAQs

Package last updated on 03 Aug 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc