在 Meteor 中,是否可以使用命令提示符列出用户

In Meteor, is it possible to list users using command prompt

是否可以使用命令提示符列出所有 meteor 用户、各自的密码和所有相关数据?我试过打开流星 shell 和 运行 'Accounts.find' 和 'Accounts._accountData' 但都没有 returns 我要找的东西。

从终端通过流星 shell:

  1. meteor shell会开流星shell

  2. Meteor.users.find().fetch() 将找到所有用户和各自的数据

从终端通过流星 mongo:

  1. meteor mongo 将打开 mongo shell

  2. db.users.find() 将在 mongo

  3. 中找到所有用户和各自的数据