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

@dpc-sdp/ripple-tide-search-api

Package Overview
Dependencies
Maintainers
4
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dpc-sdp/ripple-tide-search-api

Ripple API endpoints for Tide search provider

  • 1.22.0
  • npm
  • Socket score

Version published
Weekly downloads
112
increased by409.09%
Maintainers
4
Weekly downloads
 
Created
Source

@dpc-sdp/ripple-tide-search-api

This package exposes an API for connecting to Tide's internal search API.

By abstracting the Tide search implementation (currently Elasticsearch) we are able to support multiple search interfaces in the future.

The basic idea is that you pass only the required parameters for a search query and configure a search template when instantiating the API which is responsible for transforming the request to the search service and the response returned.

Search templates

Templates to transform elasticsearch requests and responses.

Templates can be extended at runtime by passing in a template to config option passed to appHandler A template is an object with functions for transforming the request sent to a search service and / or the response returned from this API

Example search template

example: {
  requestMapping: (params) => {
    return {
      query: {
        match_all: {}
      }
    }
  },
  responseMapping: (res) => {
    return res
  }
}

*/

FAQs

Package last updated on 03 Jun 2021

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