joewalnes / node-ldapauth

LDAP authentication library for Node.JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

  • This library is only for LDAP authentication. If you're looking for a more complete LDAP implementation, check out http://ldapjs.org/

LDAP Authentication for Node.JS

Provides a simple function for validating username/password credentials on an LDAP server.

This can be used in web-applications that authenticate users from a central directory.

It binds to the native OpenLDAP library (libldap) and calls ldap_simple_bind().

Building

./build.sh

Usage

Ensure libldap (OpenLDAP client library) is installed.

You need to add ldapauth.node to your application.

var ldapauth = require('./ldapauth'); // path to ldapauth.node

ldapauth.authenticate('scheme', 'some.host', 389 /*port*/, 'someuser', 'somepassword', 
  function(err, result) {
    if (err) {
      print('Error');
    } else {
      print('Credentials valid = ' + result); // true or false
    }
  });

Resources

2010, Joe Walnes, joe@walnes.com, http://joewalnes.com/

Bitdeli Badge

About

LDAP authentication library for Node.JS


Languages

Language:C++ 90.7%Language:JavaScript 5.9%Language:Python 2.8%Language:Shell 0.5%