LDAP Client and Server API for node.js
Go to file
Tony Brix df2d212f20
Merge pull request #788 from ldapjs/dependabot/github_actions/actions/setup-node-3
build(deps): bump actions/setup-node from 2.5.1 to 3
2022-02-26 09:49:05 -06:00
.github build(deps): bump actions/setup-node from 2.5.1 to 3 2022-02-26 08:01:10 +00:00
docs docs: add note on client error handling to documentation 2022-02-15 15:59:08 +01:00
examples lint 2021-05-27 14:16:05 -05:00
lib force socket to be closed on destroy 2022-02-25 13:39:20 -05:00
scripts chore: fix building docs 2021-11-13 01:08:01 -06:00
test force socket to be closed on destroy 2022-02-25 13:39:20 -05: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 check-coverage: false 2021-04-05 00:38:39 -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 v2.3.2 2022-02-25 15:01:26 -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

DTrace support is included in ldapjs. To enable it, npm install dtrace-provider.

License

MIT.

Bugs

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