-
-
Notifications
You must be signed in to change notification settings - Fork 596
Remove Node 12 and 15 support #1535
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
type:feature
New feature or improvement of existing feature
Comments
Thanks for opening this issue!
|
I'd suggest:
Later, when we are bumping the node version to >=14 in Parse Server, we can also so that in the JS SDK. The bump to Node 14 in Parse Server will happen in 4 months with Parse Sever 6.x, at the end of the year. |
A PR for this should cover:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
New Feature / Enhancement Checklist
Current Limitation
Current build settings allow for node.js from version 8. But as far as I can see, it can only be used via parse-server which only supports nodejs from version 12.
Feature / Enhancement Description
Could we change node support for Parse SDK JS as well? It would allow using ES7 features as object destructuring without the need for a polyfill.
Example Use Case
As an example, these lines seems to be the slowest (by far) in Parse.Object getter, which is called a lot in any code. Replacing these lines with a simple
const data = {...serverData};
is more than 80% faster according to jsbench.The text was updated successfully, but these errors were encountered: