Socket
Socket
Sign inDemoInstall

@ebi-wp/ebinocle-ng-rsclient

Package Overview
Dependencies
Maintainers
3
Versions
142
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ebi-wp/ebinocle-ng-rsclient

EBI Search REST interface client


Version published
Maintainers
3
Created
Source

ebinocle-ng-rsclient

EBI Search Angular REST client

Install

npm i @ebi-wp/ebinocle-ng-rsclient

Usage example

The following example, creates a SearchRequest object, sets the domain and query. Then it gets the search results using that object.

import { Component } from '@angular/core';
import { Configuration, SearchRequest, SearchService } from '@ebi-wp/ebinocle-ng-rsclient';

@Component({
  selector: 'app-search',
  templateUrl: './search.component.html'
})
export class SearchComponent {
  constructor(private readonly searchService: SearchService) {}

  public search() {
    const searchRequest = new SearchRequest(new Configuration());
    searchRequest.setDB('embl');
    searchRequest.query = 'mouse';

    return this.searchService.getSearchResults(searchRequest);
  }
}

Keywords

FAQs

Package last updated on 10 Jan 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