-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
Refactor lib/* in ES6? #2426
Comments
There are already ES6 features being used in many places. We're just converting gradually, as particular areas are touched. Wholesale refactoring is probably not a great idea as it tends to introduce high risk of merge conflicts. Also, I believe such a refactor would be considered a style change, which we tend to not accept on their own. |
If you mean jsdoc or doxygen-style documentation, we don't do that. The canonical API documentation is in doc/api. |
I see two additional issues:
|
And let's not forget that the code is technically already valid ES6. We don't need to use all the new features to say it. |
This is not just about style, the whole thing about ES6 is the possibility to produce better JS code, less verbose and more maintainable. And no better place to encourage best coding practices than in node core library itself. I believe innovation is driven by changing and breaking things, not by maintaining old code for backwards compatibility or by worrying about performance issues without benchmarks. This is surely not a thing to be done in the current release cycle, but what about the next? Are we going to maintain all those legacy code forever? |
@recidive the problem here is that node's core libraries are in the hot path of every node.js application in production. We can't go refactoring code in a way that could be slower or inadvertently change functionality for reasons this reckless. New features are great for application developers but in the hot code paths we have to rely on code style that can be highly optimized by the VM which usually means staying away from new features which have not been around long enough to be optimized. That said, if you have a patch that uses a bunch of string templates, or some other new feature, and it turns out to benchmark faster, it's likely to make it in. |
Also, don't be discouraged by the push back here. It's not that we don't want to use these ES6 features more. It's just that we want changes to happen incrementally, so they can be carefully reviewed and more easily merged. Some changes might be fine while others are not, and grouping them together might just get them all rejected together. Some low-impact features that can be used currently are const, template strings and symbols. There's probably others too. I'm not sure what our policy is on let, but I'd really like to start using it. Larger features like promises, generators and classes have a somewhat larger change surface or performance profile, and are therefore being avoided for now. |
Some ES6 features that might be looked upon with skepticism in And there seems to be some interest in speeding up tests lately. (See #2410, #2393, and #2429.) So if you're into ES6 and benchmarks, a refactor of any tests that achieve better performance with ES6 features would be great to see. |
Maybe https://github.com/nodejs/NG could be a good place to discuss it? |
Closing, as this has been explained pretty well. ES6 is making it into |
Hello folks!
Do you have any plans on refactoring core library stuff to ES6?
It also lacks proper code documentation.
Is such refactor welcome as contribution?
Thanks!
The text was updated successfully, but these errors were encountered: