What is the problem this feature will solve?
Node.js should implement the new WHATWG URL specification
feature for Windows file path handling. Currently Windows
drive letter patterns are not automatically converted to
file:/// URLs.
What is the feature you are proposing to solve the
problem?
When parsing URLs, Windows drive letter patterns
([a-zA-Z]:) should automatically convert to file:/// URLs
with forward slashes.
What alternatives have you considered?
This is a spec compliance issue - the WHATWG URL
specification is adding this feature.
Example
new URL("C:\\folder\\file.txt")
// Should output: file:///C:/folder/file.txt
Related links
What is the problem this feature will solve?
Node.js should implement the new WHATWG URL specification
feature for Windows file path handling. Currently Windows
drive letter patterns are not automatically converted to
file:/// URLs.
What is the feature you are proposing to solve the
problem?
When parsing URLs, Windows drive letter patterns
([a-zA-Z]:) should automatically convert to file:/// URLs
with forward slashes.
What alternatives have you considered?
This is a spec compliance issue - the WHATWG URL
specification is adding this feature.
Example
Related links
accepting windows backslash paths web-platform-tests/wpt#53459