Skip to content

Instantly share code, notes, and snippets.

View yellowred's full-sized avatar
💭
🦀 ⚡️

Oleg Kubrakov yellowred

💭
🦀 ⚡️
View GitHub Profile
@yellowred
yellowred / client.js
Created August 24, 2016 02:51
create LDAP client
const ldapOptions = {
url: ldapConfig.url,
timeout: ldapConfig.timeout,
connectTimeout: ldapConfig.connectTimeout,
reconnect: true
};
const ldapClient = ldapjs.createClient(ldapOptions);