Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 894 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 894 Bytes

@csquare/ldapjs-client

GitHub license npm

Promisified version of the ldapjs package with additional typings.

Acknowledgments

This library heavily relies on the ldapjs package. Please see http://ldapjs.org/ for the complete detailed usage.

Installation

Install with npm:

npm install --save @csquare/ldapjs-client

Install with Yarn:

yarn add @csquare/ldapjs-client

Usage

import { createClient } from '@csquare/ldapjs-client';

(async () => {
  const options = {};
  const client = createClient(options);
  await client.bind(/* args */);
})();