Skip to content

foxbit19/ldaplookup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LDAP Lookup

Build Status

LDAP lookup library for node.js

Installing

npm i --save ldaplookup

Usage

// load the library
const ldaplookup = require('ldaplookup');

// lookup ldap servers
const addresses = await ldaplookup('your.ldapdomain');

// print the first ip address found
console.log(`First ldap server found: ${addresses[0]}`);

Types

You can also use the library through provided definition types.

// load the library
import * as ldaplookup from 'ldaplookup';

// lookup ldap servers
const addresses: string[] = await ldaplookup('your.ldapdomain');

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details

About

LDAP lookup library for node.js

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published