LDAP Client and Server API for node.js
Go to file
Tony Brix 332de11211 fix travis-ci (#538)
* fix travis-ci

* add node_js to future lint job

* add future windows tests
2019-08-27 17:05:33 -04:00
bin Fix style error in ldapjs-search util 2014-10-16 16:14:28 -05:00
deps First steps toward updating the docs 2015-10-16 00:25:49 -05:00
docs Document `reconnect` option. (#504) 2019-08-26 19:16:42 -04:00
examples Remove pooled client example 2014-07-06 01:01:28 -05:00
lib Refactor tests to be independent of each other 2019-08-27 14:17:33 -04:00
test Refactor tests to be independent of each other 2019-08-27 14:17:33 -04:00
tools First steps toward updating the docs 2015-10-16 00:25:49 -05:00
.dir-locals.el Initial setup for 0.5 (use eng.git layout) 2012-02-18 08:15:52 +00:00
.gitignore Convert tests back to node-tap 2019-08-27 09:11:52 -04:00
.gitmodules Initial setup for 0.5 (use eng.git layout) 2012-02-18 08:15:52 +00:00
.npmignore Release v1.0.2 2018-01-11 18:38:32 +00:00
.taprc Convert tests back to node-tap 2019-08-27 09:11:52 -04:00
.travis.yml fix travis-ci (#538) 2019-08-27 17:05:33 -04:00
CHANGES.md Release v1.0.2 2018-01-11 18:38:32 +00:00
LICENSE Initial working client/server version 2011-08-04 13:32:01 -07:00
Makefile First steps toward updating the docs 2015-10-16 00:25:49 -05:00
README.md Update travis config (#537) 2019-08-27 15:28:07 -04:00
package.json Update dependencies to latest 2019-08-27 09:15:48 -04:00

README.md

LDAPjs

Build Status Coverage Status

LDAPjs makes the LDAP protocol a first class citizen in Node.js.

Usage

For full docs, head on over to http://ldapjs.org.

var ldap = require('ldapjs');

var server = ldap.createServer();

server.search('dc=example', function(req, res, next) {
  var obj = {
    dn: req.dn.toString(),
    attributes: {
      objectclass: ['organization', 'top'],
      o: 'example'
    }
  };

  if (req.filter.matches(obj.attributes))
  res.send(obj);

  res.end();
});

server.listen(1389, function() {
  console.log('ldapjs listening at ' + server.url);
});

To run that, assuming you've got the OpenLDAP client on your system:

ldapsearch -H ldap://localhost:1389 -x -b dc=example objectclass=*

Installation

npm install ldapjs

DTrace support is included in ldapjs. To enable it, npm install dtrace-provider

License

MIT.

Bugs

See https://github.com/ldapjs/node-ldapjs/issues.