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

@nestjs/elasticsearch

Package Overview
Dependencies
Maintainers
3
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nestjs/elasticsearch

Nest - modern, fast, powerful node.js web framework (@elasticsearch)

  • 0.1.0
  • npm
  • Socket score

Version published
Weekly downloads
67K
decreased by-12.52%
Maintainers
3
Weekly downloads
 
Created
Source

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications, heavily inspired by Angular.

NPM Version Package License NPM Downloads Travis Linux Coverage Gitter Backers on Open Collective Sponsors on Open Collective

Description

Elasticsearch module for Nest based on the official elasticsearch package.

Installation

$ npm i --save @nestjs/elasticsearch

Usage

  1. Import ElasticsearchModule:
@Module({
  imports: [ElasticsearchModule.register({ 
    host: 'localhost:9200',
    log: 'trace',
  })],
  providers: [...],
})
export class SearchModule {}
  1. Inject ElasticsearchService:
@Injectable()
export class SearchService {
  constructor(private readonly elasticsearchService: ElasticsearchService) {}
}

API Spec

The ElasticsearchService exposes native elasticsearch methods and wraps them in the Observable, read more. The ElasticsearchModule.register() takes options object as an argument, read more.

Support

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.

Stay in touch

License

Nest is MIT licensed.

FAQs

Package last updated on 24 Aug 2018

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