Faizan Ahmad
Faizan Ahmad

Reputation: 382

How to use multiples Parse instance

Is there a way to initialize multiple parse apps in react javascript, currently i am initializing single parse app like this

Parse.initialize(config.appId);
Parse.serverURL = config.serverURL;

Upvotes: 1

Views: 432

Answers (1)

Julien Kode
Julien Kode

Reputation: 5479

Currently with the implementation of the SDK you cannot do that. Theses methods and properties are static as you can see here

What you can do is to use the REST API

You can also suggest this feature on the GitHub repository

Upvotes: 2

Related Questions