Accessing to DB at client side as in server side with meteor

后端 未结 3 708
别那么骄傲
别那么骄傲 2021-01-05 02:12

I read this at the docs:

Database Everywhere. Use the same transparent API to access your database from the client or the server.

相关标签:
3条回答
  • 2021-01-05 02:44

    You are correct. The developers are currently working on Auth and security concerns. As of now everything is open and great for creating prototypes and test apps however they are vulnerable to users retrieve/remove/update data as they like.

    See the developer response to this question here: Link

    0 讨论(0)
  • 2021-01-05 02:58

    Secure your app by removing the insecure and autopublish packages:

    meteor remove insecure autopublish
    
    0 讨论(0)
  • 2021-01-05 02:59

    Meteor now includes restrictions on client database writes (allow and deny) and a complete user accounts system.

    0 讨论(0)
提交回复
热议问题