I’m using accounts-password but I can’t locate the user collection. Please help.
The accounts-*
package creates Meteor.users
for you. You can easily see it in your browser console
Meteor.users.find().fetch()
will show you the current user, or all users if you have the insecure
package still installed.
You can also open a new shell in your project directory (ie. C:\project) and type “meteor mongo”. That will take you to the Mongo shell for your project. And then type “show collections” and it will show the collections list, including users.