node-ldapjs/README.md

46 lines
885 B
Markdown
Raw Normal View History

2011-08-25 04:46:31 +00:00
ldapjs makes the LDAP protocol a first class citizen in Node.js.
2011-08-15 20:50:15 +00:00
## 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: {
2011-08-25 04:46:31 +00:00
objectclass: ['organization', 'top'],
o: 'example'
2011-08-15 20:50:15 +00:00
}
};
2011-08-25 04:46:31 +00:00
if (req.filter.matches(obj.attributes))
2011-08-15 20:50:15 +00:00
res.send(obj);
res.end();
});
server.listen(1389, function() {
console.log('ldapjs listening at ' + server.url);
});
2011-08-25 04:46:31 +00:00
To run that, assuming you've got the [OpenLDAP](http://www.openldap.org/) client
on your system:
2011-08-15 20:50:15 +00:00
2011-08-25 04:46:31 +00:00
ldapsearch -H ldap://localhost:1389 -x -b dc=example objectclass=*
2011-08-04 20:32:01 +00:00
## Installation
2011-08-25 04:46:31 +00:00
npm install ldapjs
2011-08-04 20:32:01 +00:00
## License
MIT.
## Bugs
See <https://github.com/mcavage/node-ldapjs/issues>.