Ask HN: What is Parse?
This is a very noobish question, sorry about that. I've spent the last several minutes trying to understand what Parse.com is but I still don't get it. What does Parse Cloud do? Does it take care of all my database needs? (Replacement for MySQL?)
4 comments
[ 4.7 ms ] story [ 15.0 ms ] threadJust enter your data types as objects in the GUI and you're good to go. There's JavaScript too if you absolutely need it.
I've used it and it definitely made my life a lot easier as a mobile developer with little back end experience.
Why would you want your app to connect to a backend? Without a backend, you can only store data from a user in a database on their local device; which means that data is only available on that device.
If you need to do a login system, any kind of social interaction (sharing data between users), a leaderboard, syncing data across devices, etc. - you will need a backend. Parse helps you with that by providing you APIs to do all of those things.
I'm actually building an open source BaaS. Email me if you have any more questions.