# Parse Reviews
**Vendor:** Parse  
**Category:** [Mobile Backend-as-a-Service (mBaaS) Software](https://www.g2.com/categories/mobile-backend-as-a-service-mbaas)  
**Average Rating:** 3.7/5.0  
**Total Reviews:** 42
## About Parse
Just focus on creating amazing user experiences and forget about complex infrastructure. Use Parse in your app and easily add a powerful cloud database, versatile push notification services, analytics tracking, and more.




## Parse Reviews
  ### 1. Easy sockets to use realtime data

**Rating:** 3.5/5.0 stars

**Reviewed by:** Samuel A. | Senior Software Engineer, Small-Business (50 or fewer emp.)

**Reviewed Date:** October 13, 2022

**What do you like best about Parse?**

Fast way to conect mobile apps with server to show realtime data

**What do you dislike about Parse?**

Hard migrations data, when you want to add new values it could be so thoughtful

**What problems is Parse solving and how is that benefiting you?**

Solve multiple problems at same time, authentication, storage, and the most useful in my case was the realtime data approach

  ### 2. Good service

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** October 11, 2022

**What do you like best about Parse?**

They have good documentation for the understanding of the product.

**What do you dislike about Parse?**

Their support take several days to reply on issues.

**What problems is Parse solving and how is that benefiting you?**

They are supporting to build faster solutions by utilizing the parse services.

  ### 3. Parse is being shut down in January 2017

**Rating:** 1.0/5.0 stars

**Reviewed by:** Bjoern S. | Founder, Marketing and Advertising, Small-Business (50 or fewer emp.)

**Reviewed Date:** September 19, 2016

**What do you like best about Parse?**

We really enjoyed the ability to build small middleware solutions with Parse. It came with everyhting you needed: User management, database, SSL hosting, different client SDKs. We're sad to see it go

**What do you dislike about Parse?**

Parse was never production level reliable. We could only use it for scenarios that we'ren't business critical. 

I obviously also dislike Facebook's decision to shut it down.

**Recommendations to others considering Parse:**

You shouldn't use it, as it's shutting down. There's no real way to become a new user of Parse. The current way would be to deploy Parse server on your own infrastructure, as it's been open-sourced. This also means that there are a few additional considerations here: 

1) Does open source Parse server support all your use cases (i.e. there is no built-in job framework anymore). 
2) what solution do you use to manage your Parse apps (Parse Dashboard has been open-sourced to, but is a separate prodcut). 
3) Where do you want to host ist. Parse suggests a number of cloud based hosters, we're currently going with Heroku. We've also tried running on Digital Ocean and think about trying to run on Azure.

**What problems is Parse solving and how is that benefiting you?**

We could deploy custom software solutions at a much faster time to market. It was particularly useful to write custom middlewares that would move data based on webhooks from one system to another.

  ### 4. Awesome, Simple Backend Services

**Rating:** 4.0/5.0 stars

**Reviewed by:** Patrick W. | Creative Director + Strategist, UX/UI/Experience Designer, Senior Consultant, Small-Business (50 or fewer emp.)

**Reviewed Date:** November 08, 2016

**What do you like best about Parse?**

I initially used Parse as an easy way of integrating push notifications into a native iOS application I developed. Its very well designed and easy to add to an application with minimal headaches. If you plug in additional data points, Parse makes it easy to target messages to specific users or groups of users that match certain attributes.

**What do you dislike about Parse?**

One of the best things about Parse is that it's currently managed and operated for you. In January 2017, you'll need to host the service yourself in order to continue using it (http://parse.com/migration). That said, it's still immensely valuable even if you have to host it yourself.

**Recommendations to others considering Parse:**

You'll need to setup your own hosted version of Parse if you wish to continue using it after January 2017. That said: it's worth it.

**What problems is Parse solving and how is that benefiting you?**

Being able to push content to users and maintain a tightly integrated database in parallel is really valuable in quickly building and deploying a technology product. Parse makes it very easy to integrate push notifications into your application with as little complexity as possible or as much as you desire if you wish to push the feature further.

  ### 5. Technical debt that wasn't worth the tradeoff

**Rating:** 0.0/5.0 stars

**Reviewed by:** Verified User in Leisure, Travel & Tourism | Small-Business (50 or fewer emp.)

**Reviewed Date:** July 20, 2016

**What do you like best about Parse?**

User session management is one of the few things I don't loathe about Parse. Their docs are pretty well thought out as well. I didn't take place in the full implementation, but apparently you can get up and running rather quickly.

**What do you dislike about Parse?**

Most everything. Insanely long response times for most queries. We're talking at LEAST 1000ms for a single record query, even if searching by the objectId. The product is also being deprecated, so it was a forcing function of our migration off the platform. A lot of my dislike towards it might be misdirected from being a fan of SQL over a mongodb. It's quite costly for the amount of downtime we also experience. 

**Recommendations to others considering Parse:**

Don't waste the time and effort. It's being deprecated. 

**What problems is Parse solving and how is that benefiting you?**

We were solving the need of quickly spinning up an API/backend server as a service. It made getting off the ground relatively quick but cost us a lot in technical debt. 

  ### 6. A new era of hosted services

**Rating:** 4.0/5.0 stars

**Reviewed by:** Antonello P. | Angular & Hybrid apps team coach, Small-Business (50 or fewer emp.)

**Reviewed Date:** October 19, 2016

**What do you like best about Parse?**

The new "parse server" released GPL is a full fresh start for this project.

Project like sashido (that I'm using right now) can help you testing Parse and if you like it you can host your personal parse-server

**What do you dislike about Parse?**

The big step backward after the open source release. 
For months users doesn't had any information about the future of this project.

I think the next year will be the real start of parse open source

**What problems is Parse solving and how is that benefiting you?**

I usually develop mobile apps with backend support. Parse is a great solution for this kind of projects

  ### 7. Parse used as a backend for a quick iOS app

**Rating:** 4.5/5.0 stars

**Reviewed by:** Ephraim K. | Backend Web Developer, Entertainment, Mid-Market (51-1000 emp.)

**Reviewed Date:** April 11, 2016

**What do you like best about Parse?**

The best feature of Parse it the ability to do things quickly with little code in the app itself. There are a couple lines to set it up the the didFinishLaunchingWithOptions method, and then it is very simple to use in the rest of the app. My app only uses reads, not writes, from the Parse cloud, and I just want to pull all the data from a table in the database. I can do that by creating a PFQuery in one line, then by calling findObjectsInBackgroundWithBlock on that query to fetch the data as JSON asynchronously. It really is that easy. Parse has many other ways to request, write, and temporarily cache data, but it works great for me thus far as just an api to fetch data from the web and store in Core Data.

**What do you dislike about Parse?**

The biggest problem with data is the requirement to host your own database and parse server. This hasn't always been the case but since Parse is open source now, this will likely be the way going forward. However, the guides to do this are quite clear. The way I do it is host the Parse Server on Heroku and the data on MLabs. Both are free for the amount of traffic I have. I also use the Parse Dashboard locally to have an easy interface to update and add new data to the MLab MongoDB.

**Recommendations to others considering Parse:**

Checkout and update the Parse CocoaPod often. Since the ParseServer and CocoaPod library are now open source, things are changing fast for the better.

**What problems is Parse solving and how is that benefiting you?**

My iOS app's backbone is data on specific buildings and locations across the world. This data is updated quarterly and I need an easy way to ensure my customers have the latest data. Because this is a free app (TempleTrip on the App Store), I wanted a free easy hosting solution that wouldn't require me to write and maintain a lot of server-side code. Parse works great for me.

  ### 8.  Back-end tools for mobile developers

**Rating:** 3.5/5.0 stars

**Reviewed by:** Verified User in Entertainment | Small-Business (50 or fewer emp.)

**Reviewed Date:** November 07, 2016

**What do you like best about Parse?**

It's the best back-end tools for mobile developers that help mobile developers store data in the cloud, manage identity log-ins, handle push notifications and run custom code in the cloud.

**What do you dislike about Parse?**

Parse will shut down and all users will need to migrate their applications to other platforms. They did open the application source code in order to allow users to perform the migration and release Parse Server.

**What problems is Parse solving and how is that benefiting you?**

Creating a fast and reliable back-end where store data, manage users and handle push notification.

  ### 9. A huge time-saver for bootstrapping development, but left us stranded when end-of-lifed

**Rating:** 2.0/5.0 stars

**Reviewed by:** Alex S. | Intern, Management Consulting, Enterprise (> 1000 emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Parse's complete stack offering was the main draw. Its completeness was illustrated straight away when the documentation and 'Getting Started' docs were first read. This made me feel it was sufficiently solid to base our product off of.

It provided us with a foundation to build our unique logic upon. That meant we could avoid reinventing the wheel in so many instances, especially when it came to remote database synchronisation — easily the most challenging part of our app's requirements.

**What do you dislike about Parse?**

At first my primary dislike was how one-size-fits-all its approach to dev was. It meant our app had to be designed around Parse's development philosophy, rather than it fitting our's.

But a year on, obviously my biggest dislike of it was the way it was discontinued. Suddenly we found ourselves having to prematurely rewrite large portions of the app in addition to a whole new backend. This definitely makes me think twice about trusting anther startup with the core operations of any future apps I write.

**Recommendations to others considering Parse:**

Be sure what timespan you require the use of the product over, and then create contingency plans in the event that the platform is no longer available to you in the form it once was.

Don't let it be an excuse to not have knowledge / experience in the most difficult parts of the technology stack (such as database synchronisation and offline caching), as you may find yourself need to to rapidly develop a different approach when your original plan is no longer viable.

**What problems is Parse solving and how is that benefiting you?**

Parse solved our immediate need for a backend, dramatically reducing the initial development time by several weeks. It cut our costs, but more importantly, cut the time to market.

The primary business benefit I see emerging from this product is the ability to prototype and deploy apps in a very short time span, therefore enabling far more experimentation to take place in the development and idea creation space.

  ### 10. One of the best mobile as backend

**Rating:** 5.0/5.0 stars

**Reviewed by:** Peter M. | Co-Founder, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Parse contains 3 things that are really useful, setting up the database, push notification to the back end, and the cross platform APIs to access these 3 things.  On top of everything is their friendly UI and amazing documentation.  Although these looks extremely simple features, but yet on one has done it right.

**What do you dislike about Parse?**

There are certain limitations with Parse, such as storing file is only at 10MB.  So we had to build additional tool to store either on AWS or Azure and store the link of the file to Parse.  But I think this is something they can do easily as part of the feature which would increase usage for the users.

**Recommendations to others considering Parse:**

Parse is shutting down, we have yet to find another software mobile as backend service that can replace parse.  For now, we are still using Parse, and trying to migrate it out using their open source server version.

**What problems is Parse solving and how is that benefiting you?**

We are building a video app, which allows users to cut videos and make their own version of multiple different videos.  We realized the benefit is quickly built out our backend with Parse instead of spending additional resources when the product is not validated with market yet.

  ### 11. Out of the box stable BaaS 

**Rating:** 4.0/5.0 stars

**Reviewed by:** Matija S. | Software engineer, Information Technology and Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Easy data access and multiple data types with simple class creation.

**What do you dislike about Parse?**

Sometimes unstable and slow service for several minutes, this problems were occurred once in two months. 

**Recommendations to others considering Parse:**

Best backend as a service at the market with reasonable pricing limits.
But because of retiring announcement I would not recommend it to anybody. We started to using Parse because we thing that this will be long term solution but after announcement I am not 100% sure in any Facebook product and use it in production. We started using application in production and after 2 months Parse announce that at 17th of January 2017 they will close down their service and than migration to parse-server and host at AWS is now only solution for us.     

**What problems is Parse solving and how is that benefiting you?**

We are using Parse as simple backend solution for our clients applications mobile native applications and AngularJS web apps.

  ### 12. Parse is leaving us

**Rating:** 2.5/5.0 stars

**Reviewed by:** Kyle D. | Marketing Creative Director, Chemicals, Small-Business (50 or fewer emp.)

**Reviewed Date:** February 24, 2016

**What do you like best about Parse?**

The comprehensive guides for each platform and the ui. However I have since moved to a new backend. Parse was interesting because it allowed anybody to share native models across server-side code and across multiple clients. Also it was free for smaller clients. 

**What do you dislike about Parse?**

I dislike that the services will be fully retired very soon. I also disliked that another one of the major problems is fetching of a maximum of 1000 results in one query. More data should be able to be fetched by using paging  but the problem arises while using innerQuery. And the delay in push notifications. 

**Recommendations to others considering Parse:**

It's not going to be there. So don't. 

**What problems is Parse solving and how is that benefiting you?**

General mobile development. But once again, it's shutting down, so I had to find something new. The primary advantages of Parse were that I was able to work with application-level concepts, such as user accounts and push notifications instead of just technology-focused concepts like databases and socket I/O. 

  ### 13. Fast and easy to use

**Rating:** 5.0/5.0 stars

**Reviewed by:** Mihai I. | PHP Developer, Internet, Enterprise (> 1000 emp.)

**Reviewed Date:** March 15, 2016

**What do you like best about Parse?**

I always liked their idea of reaching people in new user experience. Parse developed a very simple way to handle things regarding user experience. And that they are showing so much support in migrating.

I now like the idea of moving to our own service because of flexibility and extending the product in our direction. Small features will be a lot easier to implement and maintain.

**What do you dislike about Parse?**

I did not had any problems with deploying and working with Parse. But it had some issues regarding querying the database. The limit of 10000 last records was some hassle as I needed to record everything on my side too.

**Recommendations to others considering Parse:**

It's easy to use and easy to implement.

**What problems is Parse solving and how is that benefiting you?**

Reaching end-user is problem. Push Notifications from Parse made it a lot easier. iOS, Android and PHP SDK's solved a lot of problems.

  ### 14. Best product to get your apps running quickly

**Rating:** 3.5/5.0 stars

**Reviewed by:** Gaurav S. | Fullstack Developer, Information Technology and Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 11, 2016

**What do you like best about Parse?**

I use it primarily to prototype my ideas. Creating MVP is first target on any project and parse minimizes the effort required in it.

**What do you dislike about Parse?**

Parse is going away. That's what I dislike most. Parse decided to shut down all of a sudden and this has made me wary of all other such platforms

**Recommendations to others considering Parse:**

Use it for prototyping and try to migrate to something of your own as soon as possible.

**What problems is Parse solving and how is that benefiting you?**

In agile development model, it's very necessary to change codebase very frequently and parse lets me redesign my database multiple times a day, I need not worry about communicating the changes to other developers until and unless it does not affect them. I need not worry about sudden downtime or crash. I don't need a devops team to manage server.

Over all turn around time has improved.

  ### 15. Good to start but not for production

**Rating:** 1.5/5.0 stars

**Reviewed by:** Sanju S. | Tech Lead, E-Learning, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 15, 2016

**What do you like best about Parse?**

When starting with the project, Parse was an easy, affordable way to go without spending much time on the backend. SDK's provided easy access and predefined query API's gave faster access to the data. Auth mechanisms took a lot of pain away while starting! 

**What do you dislike about Parse?**

The product is not scalable. As the users on the platform grew, the queries started dropping, Columns did not get indexed properly resulting in incorrect API responses. The responses are slow and write to db was taking a lot of time. Not at all scalable for a product in production

**What problems is Parse solving and how is that benefiting you?**

Was using Parse as a backend. Have used it to store user level data, completion details and was used for Push messages. Parse data was also used to send data to a customized dashboard that worked as a reporting module

  ### 16. Product was used to replace the back end in a very frontend heavy honours project. 

**Rating:** 3.0/5.0 stars

**Reviewed by:** Brayden G. | Founder / CEO, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

I like that authentication is a breeze with Parse especially when adding social authentication.

**What do you dislike about Parse?**

Limited ability to customize backend API. Certain features such as running multiple background tasks at once can get very costly with Parse. This may not be an issue now as it is being open sourced.

**Recommendations to others considering Parse:**

I would try out Parse to see if it can solve the problem you are facing, if so it could save you a lot of time. It also is being open sourced now so even cheaper to run.

**What problems is Parse solving and how is that benefiting you?**

It becomes very easy to store and access objects with Parse and authentication is already taken care of. No need to worry about anything access control related is very nice. Parse also provides many frontend frameworks which makes it easy and intuitive to integrate on the frontend.

  ### 17. Not ready for production level apps

**Rating:** 1.5/5.0 stars

**Reviewed by:** Verified User in Leisure, Travel & Tourism | Small-Business (50 or fewer emp.)

**Reviewed Date:** July 20, 2016

**What do you like best about Parse?**

Not a whole lot. It's great if you're doing a small side project or running an experiment it's great, but otherwise it's not reliable enough to run a production application.

**What do you dislike about Parse?**

Some really bad design decisions that can lead to a lot of pain as a developer. The cloud server just plain doesn't work and they are constantly down. Also just really slow.

**Recommendations to others considering Parse:**

Build it yourself. It will take longer, but will save you time in the long run.

**What problems is Parse solving and how is that benefiting you?**

Solved the problem of bottlenecks for mobile development when a web api was needed first before the iOS dev could get started, but not worth it.

  ### 18. Great push service for building mobile apps

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Enterprise (> 1000 emp.)

**Reviewed Date:** April 15, 2016

**What do you like best about Parse?**

I love the push notification provided by Parse. 

I have developed some Android apps and also got involved in their iOS app development. Before Parse, each mobile platform has their own push service like GCM on Google Android, APNS for iOS, MPNS for WinPhone etc. . These services perform excellently on their field but also make a headache for cross platforms code management and architecture design for small teams. Parse provides a nice mechanism to uniform the push service for all these platforms. Simple and elegant.

**What do you dislike about Parse?**

The biggest disappointment is the discontinued support from Facebook. I have a big concerning about the maintenance issue for it after it's open-sourced.

Now our products are undergoing a huge migration process...


**Recommendations to others considering Parse:**

I would suggest they hold on for a few months until the open-sourced Parse version is well tested.

**What problems is Parse solving and how is that benefiting you?**

LBS service for the local boba shops.

  ### 19. Great BaaS to get going quickly 

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** March 26, 2016

**What do you like best about Parse?**

Parse provides SDKs for many platforms, making it super easy to get up and running with backend services. The cloud code feature allows developers to centralize important and sensitive business logic. The Data Browser makes it easy to perform quick data manipulation. Push services are also great because it's one less thing you need to setup elsewhere. 

**What do you dislike about Parse?**

Logs for cloud code are very limited in length, so you cannot access much history (need your own logging solution).  There is no way to download your cloud code from Parse, so if you don't have it under source control (which you should) you risk losing your code if something drastic happens with the Parse service. 

**Recommendations to others considering Parse:**

Parse has decided to shutdown it's service, but has also released its server as an open source project. This is great because you can reap the many benefits, albeit not all of them, that the service provided. 

**What problems is Parse solving and how is that benefiting you?**

Benefits realized are a quick setup, one stop shop for a back end to power both web and mobile solutions. 

  ### 20. Perfect for starting with a new project

**Rating:** 3.0/5.0 stars

**Reviewed by:** Matteo M. | Full Stack Developer, Information Technology and Services, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

- User authentication/authorization/ACL
- Really simple and easysetup
- SDK available for many different platforms/languages
- Competitive low tier pricing


- Now it's open source!

**What do you dislike about Parse?**

- ...Parse BAAS will be dismissed on January 2017
- Many different small things are missing from the official documentation

**What problems is Parse solving and how is that benefiting you?**

Parse is the perfect tool for mocking app a mobile application/website that needs an user authentication system and/or a content database.
Unfortunately it will be dismissed on January 2017 but the Parse team already released the open-source implementation of Parse: Parse-Server.
Currently Parse-Server is still young and not production ready (is missing some features and is still in alpha) but it's still a really promising product that is getting always better.

  ### 21. Great product for new developers starting out who need a backend

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** August 17, 2016

**What do you like best about Parse?**

this is by far the best backend software i have ever used. It was really easy to implement as well as tons of documentation on this material. I wish facebook would keep this alive but this was one of the best software I have ever used

**What do you dislike about Parse?**

I don't really have any dislikes about their software. They made a great user friendly software that anyone starting to program could pick up how to use.

**Recommendations to others considering Parse:**

really easy to use but would recommend looking into different software as they are deprecating it.

**What problems is Parse solving and how is that benefiting you?**

It saved time and money for having a backend solution and made deployment really easy when working with a team with limited developers.

  ### 22. I have used Parse as the backend for many production mobile (iOS and Android) applications.

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** March 15, 2016

**What do you like best about Parse?**

Parse makes creating a simple backend with an API server for a mobile app's backend very easy. It also supports push notifications, local database storage, and provides a great dashboard for viewing your database and console logs and more.
Parse, while shutting down soon, also graciously decided to open source their server and dashboard on GitHub.

**What do you dislike about Parse?**

There is some limitation to what you can do with Parse if you need a more complex backend with more logic needed - Cloud Code helps, but will not do everything Node.js or another framework will do.
Also, Parse is shutting down, which is a bummer. But, luckily, they have opened sourced their server and dashboard on GitHub and I'm sure it will continue to grow in the future. 

**What problems is Parse solving and how is that benefiting you?**

Parse has solved many backend issues for small developers who need a a flexible backend for their apps and don't have the money or resources to build a custom backend for every app they build.

  ### 23. I really liked how easy it was to use it.

**Rating:** 4.0/5.0 stars

**Reviewed by:** karthika p. | Software Engineer, Internet, Enterprise (> 1000 emp.)

**Reviewed Date:** February 24, 2016

**What do you like best about Parse?**

I used Parse when we had to build a cloud based backend for our android app, and the tutorials which showed us how to set it up really helped.


**What do you dislike about Parse?**

The issue we faced at that time was that there was no relational database present, and we had to write complex queries with a lot of joins. Hence, apart from just the user login, for the main product we had to use our own local relational database

**Recommendations to others considering Parse:**

If it had all the features like a relational database etc, I highly recommend it.

**What problems is Parse solving and how is that benefiting you?**

we were solving commute to our workplace as part of the hackathon( for which we used parse).
benefits -
a) built in and easy to develop features like sign in etc

  ### 24. Great to Start up a server

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Enterprise (> 1000 emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Parse is our first and great mobile backend for first timers, or anyone who is not familiar with server side broadcasting. Sine our startup used it for our first app, it saves us the trouble of scaling and downtime. It comes with many services and the services also saves us trouble, developing Push, and Social Networks. Their tutorials are easy to follow, if you are an expert ata particular programming language. 

**What do you dislike about Parse?**

There is no dislikes to the service for building mobile apps. Their push notification service can receive some downtime. Also, and this is not a Parse problem, Facebook shutting down to servers, means it will not be hosting the servers anymore but the open service platform is a great gesture to help. Leads a slap to the face by Facebook, who use the service so much, even Fortune 500 companies.

**What problems is Parse solving and how is that benefiting you?**

Parse as a service taught how first time users can setup a server without no consequences but have the necessary tools to set up a server to host. 

  ### 25. Great while it lasted.

**Rating:** 3.5/5.0 stars

**Reviewed by:** Drake W. | Software Development, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

It just worked most of the time, and the dashboard was simple. It is sad to see the hosted service go away, however giving over a year's notice and tons of migration tools is amazing and couldn't be handled any better!

**What do you dislike about Parse?**

When they transitioned the javascript SDK away from backbone it was a pain to convert apps. Also shutting down the hosted service was a negative.

**Recommendations to others considering Parse:**

Read up on the server docs because the hosted dashboard is dead. 

**What problems is Parse solving and how is that benefiting you?**

I am hosting the main database for a school organization app. Parse has helped by letting me focus on the business side of things rather than maintain a backend and database. 

  ### 26. Parse is an easy to use BaaS

**Rating:** 5.0/5.0 stars

**Reviewed by:** Josh G. | UX Engineer, Internet, Small-Business (50 or fewer emp.)

**Reviewed Date:** February 28, 2016

**What do you like best about Parse?**

Getting a back end up and running is trivially easy. All of its various feature-sets are well designed and easy to use.

**What do you dislike about Parse?**

Its unfortunate that they're being shut down. *However*, the standalone, self-hosted version that has been released is a fine alternative.

**Recommendations to others considering Parse:**

As its being shut down, its impossible to recommend Parse as a service. However, if you're interested in a self-hosted solution, take a look at the standalone Parse server that the Parse team has released.

**What problems is Parse solving and how is that benefiting you?**

I've used Parse to build and power several web and mobile applications. As primarily a front-end developer, Parse enabled me to set up a back-end quickly and easily.

  ### 27. I love Parse

**Rating:** 5.0/5.0 stars

**Reviewed by:** Huy L. | Senior iOS Developer, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Because I'm making stand alone game (no online, don't need to save data on server), so I like best App Config and Analytics.

**What do you dislike about Parse?**

The last time I used there iOS SDK, sometime it make my app hang. Then I used my own code to call Parse's REST API. Not sure the newest SDK good or not.

**What problems is Parse solving and how is that benefiting you?**

I have no knowledge about server side, so Parse help my like, it is very simple to use.
I do this review not for $15, Parse is shutting down so I hope you guy are making something similar.

  ### 28. It's a shame it's being shut down.

**Rating:** 0.0/5.0 stars

**Reviewed by:** Joseph P. | Software Engineer, Electrical/Electronic Manufacturing, Enterprise (> 1000 emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Their developer documentation was fantastic for their api & sdk's. There's also been a vibrant community available on their answer site and other locations, such as irc.

I think they're fantastic for giving their customers such a long notice period of their shutdown, together with proactively aiding migrations away.

**What do you dislike about Parse?**

They're shutting down! It's a massive pity as there's nobody else that quite satisfies their full offering.

**Recommendations to others considering Parse:**

Don't ignore their shutdown warnings. It's time to migrate.

**What problems is Parse solving and how is that benefiting you?**

The biggest benefit we gained from them was easy push notifications, especially their geospatial capabilities.

  ### 29. Happy

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Information Technology and Services | Enterprise (> 1000 emp.)

**Reviewed Date:** January 27, 2016

**What do you like best about Parse?**

Local database, be able to pin the objects. And the built in model mapping. Easy and painless. 
So far I didn't have any problem. I like the dashboard, but it could be improved a lot. In fact, I've been using parse more than 2 years and the dashboard didn't have any feature update. 
I like that the sdk is opensource, having control of my dependencies. And be able to use it in different platforms, watchkit, tvos, mac...

**What do you dislike about Parse?**

The dashboard. I don't like not be able to reorder the rows. I don't like how to link elements between tables ( pointers). And I think I'm not using all the potential of parse. As  ios developer, I miss examples how to use the webhooks, jobs or cloudcode ( even better, to have templates for the most used cases)



**Recommendations to others considering Parse:**

I miss a ios app to control my apps.

**What problems is Parse solving and how is that benefiting you?**

I use it for pet projects. For my personal point of view I consider Parser my main option as persistent storage. The free program is a plus, you only pay if you are success. 



  ### 30. Good Backend Software Service

**Rating:** 4.5/5.0 stars

**Reviewed by:** Wilson B. | iOS / Swift / Firebase Developer, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

I like the way how it is easy to have a backend server ready to be customized even without being a backend developer a mobile developer could leverage the power of Parse.

And also the free tier is sometimes enough for having prototypes!

**What do you dislike about Parse?**

That Parse soon will be retired so if you have invested on Parse, you will need to migrate to another service.

**What problems is Parse solving and how is that benefiting you?**

Backend server for a iOS Application.

Having a backend server without any effort I mean even Parse requires some customization the process is easy.

  ### 31. very fast and reliable backend

**Rating:** 5.0/5.0 stars

**Reviewed by:** Theodoro L. | Mobile Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 16, 2016

**What do you like best about Parse?**

The Parse offers a quick and safe way to develop the backend of its mobile application. One of my favorite feature is integration with social networks.

**What do you dislike about Parse?**

Unfortunately Parse announced in early 2016 that in January 2017 will be taken down permanently. however the tool became OpenSource, so you can assemble your own Parse-Server.

**What problems is Parse solving and how is that benefiting you?**

All the backend of my mobile apps. The benefits are:
- 20gb of free storage.
- push notification.
- social networks integration.

  ### 32. Parse: a great platform to keep mobile backend complexity reduced 

**Rating:** 3.5/5.0 stars

**Reviewed by:** Javier M. | Software Developer, Small-Business (50 or fewer emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

I like how easy it is to run and integrate with the parse server. The mobile SDKs are very convenient and well designed. 

**What do you dislike about Parse?**

Parse serverside jobs are a bit limited in scope and the scheduling is simplistic at times.

**What problems is Parse solving and how is that benefiting you?**

I'm solving RSS parsing and push notification distribution. That's a whole backend server complexity I don't have to deal with.

  ### 33. Easy to use

**Rating:** 4.0/5.0 stars

**Reviewed by:** Zheng Hong L. | Mid-Market (51-1000 emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

The database are created easily and can be created on demand when writing the code for it.

**What do you dislike about Parse?**

It is not so easy to customise the cloud.

**Recommendations to others considering Parse:**

Reading the documentation is a must because the api can be complex for a start.

**What problems is Parse solving and how is that benefiting you?**

A fast solution to building prototype before scaling it up.

  ### 34. Parse framework for iOS

**Rating:** 5.0/5.0 stars

**Reviewed by:** Rajesh T. | Small-Business (50 or fewer emp.)

**Reviewed Date:** January 26, 2016

**What do you like best about Parse?**

I feel the best in parse is iOS SDK as I use it. It is very developer friendly.

**What do you dislike about Parse?**

No offline support when a request is made in front end framework throws an error "no network". instead request must be archived.  I can't say it as dislike maybe an enhancement. 

**What problems is Parse solving and how is that benefiting you?**

I m consuming Faceplus api which let user upload a photo and gets the details of the photo. photo is stored in Parse.

  ### 35. Easy Push Messaging 

**Rating:** 4.0/5.0 stars

**Reviewed by:** José A. M. | Front-End Developer, Computer Software, Small-Business (50 or fewer emp.)

**Reviewed Date:** January 29, 2016

**What do you like best about Parse?**

Multiplatform, Parse boasts many modern platforms, that makes it very powerful and good. Image cache is performed automatically. Easy use, easy queries consult. API Rest. Campaigns and other good and modern features.

**What do you dislike about Parse?**

Support streaming services. Relationship between classes

**Recommendations to others considering Parse:**

Parse is very simple, easy to use and you can create great applications and features using this.

**What problems is Parse solving and how is that benefiting you?**

business apps, websites

  ### 36. Parse Review

**Rating:** 5.0/5.0 stars

**Reviewed by:** Verified User in Marketing and Advertising | Mid-Market (51-1000 emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Push notifications where the main reason why we use this solution.

**What do you dislike about Parse?**

It was the simplest way to implement a cloud backend for free, the same applies to push notifications.

**Recommendations to others considering Parse:**

Please do use the open source Parse backend available on: https://github.com/ParsePlatform/parse-server

**What problems is Parse solving and how is that benefiting you?**

I was able to create mobile applications for brands that implement a cloud back end on very early stages, therefore i was able to verify customer engagement on App.

  ### 37. Parse is very powerful

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Publishing | Small-Business (50 or fewer emp.)

**Reviewed Date:** March 15, 2016

**What do you like best about Parse?**

you can use parse for every plateform (android , ios and other plateform ) 
this programm is very simple et the documentation is very good 

**What do you dislike about Parse?**

parse use express.js but we can not choose  ORM (sequelize or mongoose ) this is the only recommendations for me 

**What problems is Parse solving and how is that benefiting you?**

my applications use a lot data and "parse" is very powerful to parse my data 

  ### 38. Awesome 

**Rating:** 5.0/5.0 stars

**Reviewed by:** Jordi P. | Web Development Manager, Leisure, Travel & Tourism, Mid-Market (51-1000 emp.)

**Reviewed Date:** March 14, 2016

**What do you like best about Parse?**

Simplicity. Statistics. Software as a service.

**What do you dislike about Parse?**

Data exports. Cloud hooks in Java. Join of data.

**What problems is Parse solving and how is that benefiting you?**

Chrome extension could be built without backend.

  ### 39. Quick setup, especially when working with iOS

**Rating:** 4.0/5.0 stars

**Reviewed by:** Verified User in Entertainment | Small-Business (50 or fewer emp.)

**Reviewed Date:** March 13, 2016

**What do you like best about Parse?**

The ability to spin a backend in a few minutes, setup tables and classes in a dashboard, I don't have to worry about client server communication and synchronization.

**What do you dislike about Parse?**

Very few issues, but when I encounter bugs, it was hard to trace and get feedback

**What problems is Parse solving and how is that benefiting you?**

Quick spin of a minimum viable product, feature testing, customer retention, user experience etc

  ### 40. Parse

**Rating:** 4.5/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** January 27, 2016

**What do you like best about Parse?**

Parse has a nice and simple inteface, also sdk is verry nice and easy to use.

**What do you dislike about Parse?**

Queries are limited to 1000 records. Initially, you may think this is not an issue, until you start dealing with sub queries, and realize weird data is returned because the sub query cuts records off without warning or error.

**What problems is Parse solving and how is that benefiting you?**

The great attraction about Parse is that you can save tens of thousands on back-end development costs.

  ### 41. Parse

**Rating:** 0.0/5.0 stars

**Reviewed by:** Verified User in Computer Software | Small-Business (50 or fewer emp.)

**Reviewed Date:** January 29, 2016

**What do you like best about Parse?**

Easy integration and good documentation.

**What do you dislike about Parse?**

The vendor connection is now shutting down, which is sure to cause a lot of trouble just before we were about to release!

**Recommendations to others considering Parse:**

Do not use.

**What problems is Parse solving and how is that benefiting you?**

Quick prototyping

  ### 42. Good user experience and excellent performance

**Rating:** 5.0/5.0 stars

**Reviewed by:** Gianfranco C. | UI/UX, iOS Developer, Web Designer, Web Developer, Marketing and Advertising, Small-Business (50 or fewer emp.)

**Reviewed Date:** January 27, 2016

**What do you like best about Parse?**

Functionality, ease of use, the new control panel still in beta, but very powerful.

**What do you dislike about Parse?**

Not quite responsive and lacks a desktop application and mobile data control.

**What problems is Parse solving and how is that benefiting you?**

Nobody.


## Parse Discussions
  - [What is Parse used for?](https://www.g2.com/discussions/what-is-parse-used-for)

- [View Parse pricing details and edition comparison](https://www.g2.com/products/parse/reviews?page=1&section=pricing&secure%5Bexpires_at%5D=2026-06-01+03%3A23%3A14+-0500&secure%5Bsession_id%5D=d1298b43-7cad-44cc-9589-ac1cd001c1fb&secure%5Btoken%5D=5d4272fb4b2e81d75eac776d19ed3dae463d55736f7f851b5c9a811d4b623108&format=llm_user)


## Top Parse Alternatives
  - [AWS Amplify](https://www.g2.com/products/aws-amplify/reviews) - 4.2/5.0 (93 reviews)
  - [Salesforce Heroku](https://www.g2.com/products/salesforce-heroku/reviews) - 4.2/5.0 (143 reviews)
  - [Azure Mobile Apps](https://www.g2.com/products/azure-mobile-apps/reviews) - 4.3/5.0 (21 reviews)

