@the-software-compagny/nestjs_module_ldap
v0.0.2
Published
LDAP module for NestJS Framework
Readme
NestJS LDAP Module
LDAP module for NestJS Framework
Install dependencies
yarn add @the-software-compagny/nestjs_module_ldap ldaptsInstanciate
LdapModule.forRootAsync({
imports: [ConfigModule],
inject: [ConfigService],
useFactory: async (config: ConfigService) => ({
config: config.get<LdapOptions>('ldap.options'),
}),
})