Socket
Socket
Sign inDemoInstall

multi-ldap

Package Overview
Dependencies
35
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    multi-ldap

ldapjs client wrapper with support for multiple servers


Version published
Weekly downloads
12
decreased by-25%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

multi-ldap

ldapjs client wrapper with support for multiple servers

Provides the same API as ldapjs, except for the createClient method which takes opts, callback arguments. The callback then returns err, client. Servers will be queried in parallel, with the fastest responding server being chosen.

Refer to the ldapjs client API for all supported options.

Installation

$ npm i --save multi-ldap

Usage

const ldap = require('multi-ldap');
ldap.createClient({
  url: [
    'ldaps://1.2.3.4',
    'ldaps://5.6.7.8',
    'ldaps://9.10.11.12',
    'ldaps://13.14.15.16',
  ]
}, function(err, client) {
  // do something with the connected client
});

© silverwind, distributed under BSD licence

Keywords

FAQs

Last updated on 26 Nov 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc