Auto publish and insecure

Do the Meteor methods , call, publish,subscribe functionality stills works even if i do not delete default auto publish and insecure packages?

Yes, they don’t stop working, you just won’t notice your publish/subscribe methods and allow/deny rules having any influence on your code.

A good use case for Autopublish package is when one of your features doesn’t work and you want to check if it’s the problem with collection security settings. Then you turn Autopublish on and if it magically starts working, you know the source of the problem.

3 Likes