ldaptive

ldap client


License
MIT
Install
npm install ldaptive@0.0.3

Documentation

ldaptive

A www.ldaptive.org fork.

$ npm install ldaptive

how to

const Ldaptive = require('ldaptive');


const CONFIG = {
  url: 'ldap://ldap.forumsys.com',
  baseDN: 'dc=example,dc=com',
  attributes: ['uid', 'cn', 'sn', 'mail', 'telephoneNumber'],
};


const client = new Ldaptive(CONFIG);


client.search('(mail=*@ldap.forumsys.com)').then(function (entries) {
  console.log(entries);
});

Special Thanks to Online LDAP Test Server from forumsys

fixme

  1. ldap-filter 2 .vasync

refer

  1. https://github.com/jeremycx/node-LDAP
  2. https://github.com/ymyang/node-ldap

MIT LICENSE