LDAP Client and Server API for node.js
Go to file
Mark Cavage e2cac51a29 GH-18: Server not handling unknown message types gracefull 2011-09-26 13:47:33 -07:00
docs minor doc typos 2011-09-13 10:46:17 -07:00
lib GH-18: Server not handling unknown message types gracefull 2011-09-26 13:47:33 -07:00
tst GH-17 invalid exop mountpoints crash server 2011-09-23 09:00:28 -07:00
.gitignore Documentation and makefile 2011-08-15 10:53:57 -07:00
LICENSE Initial working client/server version 2011-08-04 13:32:01 -07:00
Makefile Docs and anonymous bind support 2011-08-24 12:38:23 -07:00
README.md minor doc/readme update 2011-08-24 21:46:31 -07:00
package.json GH-18: Server not handling unknown message types gracefull 2011-09-26 13:47:33 -07: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.