Is it possible to implement LDAP search through angular application?
I wanted to implement LDAP in my Angular application but couldn't find any helpful resources.
I was tried with LDAPjs (https://www.npmjs.com/package/ldapjs) but it was producing following runtime error:
ERROR in ./node_modules/bunyan/lib/bunyan.js
Module not found: Error: Can't resolve 'fs' in 'D:\ldap\node_modules\bunyan\lib'
ERROR in ./node_modules/mkdirp/index.js
Module not found: Error: Can't resolve 'fs' in 'D:\ldap\node_modules\mkdirp'
ERROR in ./node_modules/mv/index.js
Module not found: Error: Can't resolve 'fs' in 'D:\ldap\node_modules\mv'
ERROR in ./node_modules/mv/node_modules/glob/sync.js
Module not found: Error: Can't resolve 'fs' in 'D:\ldap\node_modules\mv\node_modules\glob'
ERROR in ./node_modules/mv/node_modules/glob/glob.js
Module not found: Error: Can't resolve 'fs' in 'D:\ldap\node_modules\mv\node_modules\glob'
Could anyone have worked on it or do you have any useful resources for reference?
Thanks