如何让流星shell输出更加冗长?

时间:2015-06-11 14:37:57

标签: node.js meteor

我正在使用流星外壳,然而,它似乎隐藏了某些细节,使得检查变得很痛苦。

> Meteor.users.find().fetch()
{
  "_id": "someidgoeshere",
  "emails": [ [Object] ],
  "profile": {},
  "services": [ [Object] ]
}

我查看了源代码found a REPL,检查了.help提示符。我查看了documentation and didn't even find "shell" listed in the CLI

有没有办法使用某种详细选项运行Meteor shell,以便显示所有json?

1 个答案:

答案 0 :(得分:1)

好吧,如果您想将所有数据显示为JSON,那么这是一个简单的伎俩:

JSON.stringify(Meteor.users.find().fetch());

但是你会丢失语法着色和功能。我期待着用shell本身做到这一点!