meteor 将调试器断点添加到您的应用

示例

您需要debugger在代码中添加语句:

Meteor.methods({
  doSomethingUself: function(){
    debugger;
    niftyFunction();
  }
});