You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parse Server currently depends on the Parse JS SDK. This is because the Parse JS SDK is leading a double life - as a Parse client SDK and as a internal module of Parse Server that is uses for various features. This creates the following issues:
Difficult development; its adds a circular dependency where changes in the server requires changes in the SDK and vice versa.
Bloated client SDK; it contains code that is unnecessary outside of the Cloud Code environment.
Feature / Enhancement Description
Remove Parse Server's dependency on the Parse JS SDK. It should only be needed:
As a dependency alongside Parse Server if a developer wants to use the Cloud Code feature. In that case the developer needs to add the Parse JS SDK as a dependency themselves.
As a devDependency for the Parse Server tests of Cloud Code.
All elements of the Parse JS SDK that are currently in use in Parse Server should be moved to the Parse.Cloud namespace.
The text was updated successfully, but these errors were encountered:
New Feature / Enhancement Checklist
Current Limitation
Parse Server currently depends on the Parse JS SDK. This is because the Parse JS SDK is leading a double life - as a Parse client SDK and as a internal module of Parse Server that is uses for various features. This creates the following issues:
Feature / Enhancement Description
Remove Parse Server's dependency on the Parse JS SDK. It should only be needed:
dependency
alongside Parse Server if a developer wants to use the Cloud Code feature. In that case the developer needs to add the Parse JS SDK as a dependency themselves.devDependency
for the Parse Server tests of Cloud Code.All elements of the Parse JS SDK that are currently in use in Parse Server should be moved to the
Parse.Cloud
namespace.The text was updated successfully, but these errors were encountered: