-
Notifications
You must be signed in to change notification settings - Fork 62
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
WHATWG URL support #74
Comments
Hm, the node http documentation doesn't mention WHATWG URL yet, and the node 7.8.0 url module documentation says this is a stability 1 (experimental) API. Is anyone actually using this? It would be nice to support eventually, but it seems a little early. Given it isn't documented, what exactly needs to change in http? |
Node 8.x will have a higher stability level. People will be using it very soon. const url = new URL('http://domain');
http.get(url, function(response) {
// not supported in stream-http
});
`` |
I will work on this soon. |
OK, looks like this is blocked until the |
was been added to http/https in Node 7.5.0
I'm working on these to help: hasurl, isurl, isomorphic-url
The text was updated successfully, but these errors were encountered: