1
0
Fork 0

Added README and gitignores

master
Matthieu Lalonde 13 years ago committed by xSmurf
parent cf701097c0
commit 1aeba8de34

2
.gitignore vendored

@ -0,0 +1,2 @@
build
.lock-wscript

@ -0,0 +1,53 @@
LDAP Search Bindings for Node.JS
================================
This is a fork and merge of [node-LDAP](https://github.com/jeremycx/node-LDAP) and [node-ldapauth](https://github.com/joewalnes/node-ldapauth).
Provides a simple function for running search queries on an LDAP server.
It binds to the native OpenLDAP library (libldap) and calls ldap_simple_bind().
It has SSL (ldaps) and LDAP URI support.
It does not yet support LDAP bind.
Building
--------
node-waf configure build
Usage
-----
Ensure libldap (OpenLDAP client library) is installed.
You need to add ldap.node to your application.
var sys = require("sys"),
LDAPClient = require("./build/default/ldap.node"); // Path to ldapauth.node
LDAPClient.Search("ldaps://ldap.example.tld/ou=people,dc=example,dc=tld?*?sub?uid=*",
function(err, result) {
if (err) {
sys.puts(err);
} else {
sys.puts("Result: ");
console.log(result);
}
}
);
Related projects
----------------
* https://github.com/joewalnes/node-ldapauth
* https://github.com/jeremycx/node-LDAP
Resources
---------
* http://nodejs.org/
* http://www.openldap.org/
* man 3 ldap_bind
*2010, xSmurf, xsmurf@smurfturf.net, http://mlalonde.net/*

@ -1,5 +1,6 @@
// Provides Node.JS binding for ldap_simple_bind().
// See README
// 2010, xSmurf, xsmurf@smurfturf.net, http://mlalonde.net/
// 2010, Joe Walnes, joe@walnes.com, http://joewalnes.com/

Loading…
Cancel
Save