Meteor 게시 / 구독 이해 목록을 표시하는 간단한 앱 설정이 Projects있습니다. autopublish클라이언트에게 모든 것을 보내지 않도록 패키지를 제거했습니다 . {{#each projects}} {{name}} {{/each}} autopublish켜져이 있으면 모든 프로젝트가-display됩니다. if Meteor.isClient Template.projectsIndex.projects = Projects.find() 제거하면 추가로 다음을 수행해야합니다. if Meteor.isServer Meteor.publish "projects", -> Projects.find() if Meteor.isClient Meteor.subscribe "projects" Template.projectsIn..