LDAP Client and Server API for node.js
Go to file
Xotl c92ad87e47 Update documentation about paged option 2016-10-18 22:36:59 -05: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 Update documentation about paged option 2016-10-18 22:36:59 -05:00
examples Remove pooled client example 2014-07-06 01:01:28 -05:00
lib Remove useless console.log 2016-10-18 22:32:50 -05:00
test Clean up DN asserts and tests 2015-11-02 22:55:25 -06: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 Fix style/lint issues 2015-10-27 21:27:47 -05:00
.gitmodules Initial setup for 0.5 (use eng.git layout) 2012-02-18 08:15:52 +00:00
.npmignore npm ignore 2013-01-29 18:39:41 +00:00
.travis.yml Update Travis targets 2016-10-18 22:28:34 -05:00
CHANGES.md Update package dependencies 2016-10-18 22:25:14 -05: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 Remove special attribute formatting for objectGUID 2015-06-14 20:57:47 -05:00
package.json Update package dependencies 2016-10-18 22:25:14 -05:00

README.md

LDAPjs

'Build 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

License

MIT.

Bugs

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