Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meteor.js and LDAP

Any chance that LDAP authentication will be integrated into Meteor.js in the near future?

Any hints on how to get this to work today?

like image 280
cosmikwolf Avatar asked Dec 17 '12 23:12

cosmikwolf


1 Answers

Whenever working with meteor, I would suggest looking at resources that are available for node.js, when and if something isn't in the meteor docs, and there isn't already a relevant discussion here.

The reason this seems like a good start would be that meteor runs inside a node.js server instance inside a fiber. At the very least existing node.js modules may help you understand where to go next.

By performing a cursory google search for nodejs ldap, I had discovered a couple of very useful resources:

http://blog.nodejs.org/2011/09/08/ldapjs-a-reprise-of-ldap/ http://ldapjs.org/

Finally, you will likely need the answer to this question to get you on your way: it possible use a nodejs package inside meteor app?

like image 150
zealoushacker Avatar answered Oct 01 '22 12:10

zealoushacker