meteor-accounts
Installation
SKILL.md
Meteor accounts
accounts-base plus a flavor package (accounts-password,
accounts-google, etc.). Meteor stores users in Meteor.users and ships
the client a resume token mapped to that document.
Decision flow
- Username + password? Add
accounts-password. - Social login? Add
accounts-baseplus the provider package (e.g.accounts-google) and configure the service. - Magic-link? Add
accounts-passwordless. - 2FA? Layer
accounts-2faon top ofaccounts-password. - Token storage on the client? Default is Web Storage. Meteor 3.3+ supports an HttpOnly cookie flow; see the section below.