i have question about security in meteor.js.
As we know the /client side is for browser and is accessible by users.
I am trying to make a small game but i am not sure how to secure it from modifications.
I would like to have "shop" array like for example
var shopItems = [
['soup', 100$]
];
But its not much secure because user can edit the price of the soup right?
So ... what now?
The only thing comes to my mind is store it in DB but that doesn't seems nice.
Thx for help and suggestions!