LDAP Client and Server API for node.js
Go to file
dependabot[bot] 440f643259
Bump standard from 14.3.4 to 15.0.0
Bumps [standard](https://github.com/standard/standard) from 14.3.4 to 15.0.0.
- [Release notes](https://github.com/standard/standard/releases)
- [Changelog](https://github.com/standard/standard/blob/master/CHANGELOG.md)
- [Commits](https://github.com/standard/standard/compare/v14.3.4...v15.0.0)

Signed-off-by: dependabot[bot] <support@github.com>
2020-10-24 07:05:28 +00:00
.github Bump coverallsapp/github-action from v1.1.1 to v1.1.2 2020-09-12 07:03:27 +00:00
docs Add readme information about how the client picks among multiple servers 2020-09-18 16:21:55 +02:00
examples Apply standard linting to the code base (#539) 2019-08-27 17:11:49 -04:00
lib fix 2020-09-18 15:36:12 +02:00
test Change test ip address. 2020-09-18 07:48:12 +02:00
test-integration/client Add integration test for issue #582 2019-12-07 10:33:02 -05:00
.gitignore Convert tests back to node-tap 2019-08-27 09:11:52 -04:00
.npmignore Release v1.0.2 2018-01-11 18:38:32 +00: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 coveralls badge 2019-09-15 09:31:18 -04:00
docker-compose.yml Update image reference 2019-12-07 09:48:41 -05:00
package.json Bump standard from 14.3.4 to 15.0.0 2020-10-24 07:05:28 +00: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.