So I just want to create a connection to my LDAP server:
var ldap = require('ldapjs');
var client = ldap.createClient({
url: 'ldap://192.168.200.35:389'
});
But no matter what I'll input for the url:
TypeError: ldap://192.168.200.35:389 is an invalid LDAP url (scope)
Connecting with the Apache Direct Studio is working fine. I'll also receive a runtime warning:
Module not found: Error: Can't resolve './src/build' in 'C:\...\node_modules\dtrace-provider'
Has anyone a fix for this error?