LDAP Client and Server API for node.js
Go to file
Mark Cavage 4df59978ce Stop nuking node_modules on make clean (breaks npm rebuild) 2012-02-14 21:32:10 -08:00
bin GH-51 Timeout support in client library 2012-01-19 18:02:10 -08:00
docs GH-51 Timeout support in client library 2012-01-19 18:02:10 -08:00
examples DTrace rework so probes always fire 2011-11-18 16:39:37 -08:00
lib GH-55 Client emits connect event multiple times 2012-01-30 08:45:01 -08:00
tools Addition of javascriptlint 2012-01-24 09:43:46 -08:00
tst GH-55 Client emits connect event multiple times 2012-01-30 08:45:01 -08:00
.gitignore Documentation and makefile 2011-08-15 10:53:57 -07:00
.travis.yml travis tweak 2012-01-14 10:30:28 -08:00
LICENSE Initial working client/server version 2011-08-04 13:32:01 -07:00
Makefile Stop nuking node_modules on make clean (breaks npm rebuild) 2012-02-14 21:32:10 -08:00
README.md tabs in README 2011-11-10 10:15:26 -08:00
package.json Stop nuking node_modules on make clean (breaks npm rebuild) 2012-02-14 21:32:10 -08:00

README.md

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

License

MIT.

Bugs

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