meteor 启用GroundDB

示例

最后,我们希望将一些动态数据离线存储。

meteor add ground:db
Lists = new Meteor.Collection("lists");
GroundDB(Lists);

Todos = new Meteor.Collection("todos")
GroundDB(Todos);