Questions tagged [parse-server]

Parse Server is an open source version of the Parse backend that can be deployed to any infrastructure that can run Node.js.

Parse Server is an open source version of the Parse backend that can be deployed to any infrastructure that can run Node.js. Parse Server let you build applications faster.

You can find the documentation for this project on docs.parseplatform.org

It works with the Express web application framework. It can be added to existing web applications, or run by itself.

1854 questions
33
votes
9 answers

Swift display time ago from Date (NSDate)

In a cell I want to display the time ago from the NSDate in the Parse server. Here is the code but its not working. Nothing is changing, and the data isn't being parsed. if let createdat = (object?["createdAt"] as? String){ let…
john
  • 507
  • 1
  • 5
  • 15
29
votes
1 answer

How can I host my own Parse Server on Heroku using MongoDB?

(To be clear, Im asking this question so as to provide the answer I found in an effort to help others that have been similarly affected by the Parse closure) Parse.com recently anounced that they are closing shop January 2017 but thankfully they…
Wesley Smith
  • 19,401
  • 22
  • 85
  • 133
16
votes
4 answers

How to connect my Swift app to my Parse Server?

I'm working on connecting my Parse app to my Node.js Parse Server with the Swift language. In the documentation of Parse, I can see this code : [Parse initializeWithConfiguration:[ParseClientConfiguration…
fraxool
  • 3,199
  • 4
  • 31
  • 57
11
votes
0 answers

Firebase vs Parse (What are actual examples of apps when Firebase is preferable?)

I am trying to understand WHEN Firebase is preferable (in terms of the types of apps you would choose Firebase for instead of Parse Server... not just the keyword characteristics) I have read atleast two dozen articles on this subject as I am trying…
11
votes
1 answer

Migration of Small Parse IDs to normal MongoDB's ObjectIDs

I am using Parse Dashboard for User Management of my iOS Application.Also, I am using external APIs which are using MongoDB database. The issue currently I am facing is the User created from Parse Dashboard is having small id instead of MongoDB's…
Aditya Raval
  • 590
  • 4
  • 20
11
votes
1 answer

Parse Rest - Push encode message

I am having issue with push utf8 encode message using Parse Rest, here is my body {"where":{"$and":[{"email":{"$in":["phaxxx@gmail.com","nhungxxx@gmail.com"]}},{"deviceType":{"$in":["ios"]}}]},"data":{"alert":"TEST: Giảm 40% Khi Mua Sách Harry…
Thang Pham
  • 38,125
  • 75
  • 201
  • 285
10
votes
1 answer

Why is my heroku app empty when I clone it (it should be parse-server)

I created a heroku app using the Deploy to heroku button on this page https://github.com/ParsePlatform/parse-server-example I can check its running by running code similar to the following which returns results in terminal. curl -X GET \ …
Lango
  • 2,995
  • 5
  • 26
  • 27
10
votes
3 answers

Parse Dashboard can only be remotely accessed via HTTPS

I'm trying to deploy a Parse Server and Parse Dashboard on my DigitalOcean's server. I installed through docker-compose on this git: https://github.com/yongjhih/docker-parse-server When I access to it, http://rafael-ruiz.es:4040 it says: Parse…
Rafael Ruiz Muñoz
  • 5,333
  • 6
  • 46
  • 92
9
votes
0 answers

Poor Parse Server performance due to Expressjs Middleware: jsonParser

One of my Parse Server cloud functions is performing very poorly, and I am hoping someone could help point me in the right direction to begin debugging the reasons why so I can fix it. I used New Relic APM to do a transaction trace of the function,…
9
votes
2 answers

Enabling Reset Password and email verification for parse-server hosted locally

I am trying to enable reset password and email verification for my parse-server-example installed locally. I could see we have https://github.com/parse-server-modules/parse-mailgun. But I am not clear how to use parse-mailgun in…
atul kumar
  • 221
  • 2
  • 7
9
votes
6 answers

How do I see logs on parse-server?

Parse had a nice development command utility where you could read and stream logs. Heroku has that, but it shows only Heroku logs, not Parse logs. Is there some way to see a console.log or console.error statement now that we're all switching over to…
buildsucceeded
  • 4,203
  • 4
  • 34
  • 72
8
votes
1 answer

Cloud Code object.save() results in 'object not found' with very strange PUT command

Issue Description I have a simple Cloud Code command to create or update an object. If there is NO objectId passed in, the routine creates a new object and returns the objectId. If the objectId exists in the parameter list, it fetches the object…
MobileVet
  • 2,958
  • 2
  • 26
  • 42
8
votes
2 answers

Using Cloud Code with the Parse Server and Heroku

I am trying to understand the new Parse Server and have deployed on Heroku. This went smoothly but what I am struggling with is figuring out how to write server side code (Cloud Code). I've read over the parse server example many times so I must be…
01Riv
  • 1,444
  • 1
  • 13
  • 28
8
votes
2 answers

Parse-server cloud code function 'Cannot POST'

Most parts of my migration to open source parse-server are successful, with my data correctly stored, accessible. I am however having problems with cloud code, specifically with running simple curl tests. The initial parse-server installation…
Rocket Garden
  • 1,166
  • 11
  • 26
7
votes
1 answer

Parse server: how to make this query efficient?

I have a Message class - it contains a mass message, that can be delivered on-demand to many users, but each user can get it only once, when he demands new messages. How can I ensure that user never gets it again after it has once been…
David Riha
  • 1,368
  • 14
  • 29
1
2 3
99 100