Erik Römmelt 5d28bc36e1 node_modules updated, buefy add to lib folder | 5 years ago | |
---|---|---|
.. | ||
bin | 5 years ago | |
examples | 5 years ago | |
lib | 5 years ago | |
.dir-locals.el | 5 years ago | |
.npmignore | 5 years ago | |
.travis.yml | 5 years ago | |
CHANGES.md | 5 years ago | |
LICENSE | 5 years ago | |
README.md | 5 years ago | |
ldapjs-1.0.2.tgz | 5 years ago | |
package.json | 5 years ago |
LDAPjs makes the LDAP protocol a first class citizen in Node.js.
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=*
npm install ldapjs
MIT.