LDAP Client and Server API for node.js
Go to file
James Sumners 547ceb6fa1 Update deps 2023-02-22 14:09:27 -05:00
.github Update supported Node versions (CI) 2023-02-22 14:09:27 -05:00
docs Replace messages with @ldapjs/messages 2023-02-22 14:09:27 -05:00
examples Update deps 2023-02-22 14:09:27 -05:00
lib Update deps 2023-02-22 14:09:27 -05:00
scripts chore: fix building docs 2021-11-13 01:08:01 -06:00
test Fix Set size querying 2023-02-22 14:09:27 -05:00
test-integration Migrate filter extensions (#809) 2023-02-22 14:09:27 -05:00
.eslintignore chore(lint): use eslint instead of standard 2020-12-06 11:10:55 -06:00
.eslintrc.js Replace messages with @ldapjs/messages 2023-02-22 14:09:27 -05:00
.gitignore docs: simplify docs 2021-02-25 01:39:35 -06:00
.npmrc Replace messages with @ldapjs/messages 2023-02-22 14:09:27 -05:00
.taprc.yml Reduce coverage requirement 2023-02-22 14:09:27 -05:00
CHANGES.md Update changelog 2020-05-31 08:58:50 -04:00
LICENSE Touch up package.json, license, readme 2019-08-27 17:22:26 -04:00
README.md Remove dtrace 2023-02-22 14:09:27 -05:00
docker-compose.yml Update docker config 2022-03-27 12:02:59 -04:00
package.json Update deps 2023-02-22 14:09:27 -05: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

License

MIT.

Bugs

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