Skip to content

Instantly share code, notes, and snippets.

@yellowred
Created August 24, 2016 02:51
Show Gist options
  • Save yellowred/58a65d50c5a10d55fcc0f1a87b94d043 to your computer and use it in GitHub Desktop.
Save yellowred/58a65d50c5a10d55fcc0f1a87b94d043 to your computer and use it in GitHub Desktop.
create LDAP client
const ldapOptions = {
url: ldapConfig.url,
timeout: ldapConfig.timeout,
connectTimeout: ldapConfig.connectTimeout,
reconnect: true
};
const ldapClient = ldapjs.createClient(ldapOptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment