Skip to content

The-Software-Compagny/nestjs_module_ldap

Repository files navigation

Nest Logo

A LDAP module for Nest framework (node.js) using ldapts library

NPM Version Package License Publish Package to npmjs


NestJS LDAP Module

LDAP module for NestJS Framework

Install dependencies

yarn add @the-software-compagny/nestjs_module_ldap ldapts

Instanciate

LdapModule.forRootAsync({
  imports: [ConfigModule],
  inject: [ConfigService],
  useFactory: async (config: ConfigService) => ({
    config: config.get<ClientOptions>('ldap.options'),
  }),
})