LDAP Client and Server API for node.js
Go to file
dependabot[bot] b17973ed41
Bump actions/setup-node from v1 to v2.1.5
Bumps [actions/setup-node](https://github.com/actions/setup-node) from v1 to v2.1.5.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v1...46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea)

Signed-off-by: dependabot[bot] <support@github.com>
2021-02-27 08:00:49 +00:00
.github Bump actions/setup-node from v1 to v2.1.5 2021-02-27 08:00:49 +00:00
docs docs: simplify docs 2021-02-25 01:39:35 -06:00
examples update devdependency standard to v16 2020-10-31 16:07:32 -05:00
lib fix: emit error event if other error events are not listened to 2021-02-23 17:23:56 -06:00
scripts docs: simplify docs 2021-02-25 01:39:35 -06:00
test fix: emit error event if other error events are not listened to 2021-02-23 17:23:56 -06:00
test-integration chore(lint): fix no-unused-vars errors 2020-12-06 19:26:27 -06:00
.eslintignore chore(lint): use eslint instead of standard 2020-12-06 11:10:55 -06:00
.eslintrc.js chore(lint): fix no-unused-vars errors 2020-12-06 19:26:27 -06:00
.gitignore docs: simplify docs 2021-02-25 01:39:35 -06:00
.taprc Disable useless tap features 2019-12-07 09:54:29 -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 fix readme badges 2020-11-12 22:34:41 -06:00
docker-compose.yml Update image reference 2019-12-07 09:48:41 -05:00
package.json docs: highlight code 2021-02-24 16:06:13 -06: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.