Is there a way to implement multiple logins without using user accounts package

Hello,

I am trying to create a hybrid application using meteor that interacts with my other modules(non-meteor). i cannot use user accounts package directly as i want to have control over my database operations. Is there a way to implement login/registration without accounts package? Any other suggestions?

For login (depending on your requirements) you might still be able to use Meteor’s Accounts system, but leverage custom login handlers. See Extending Meteor Accounts (login system) for an example of how this works.