Skip to content
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

Add a URL module to implement standardized URL processing for HTTP request targets #168

Open
3 tasks
rdw-software opened this issue Dec 29, 2022 · 1 comment

Comments

@rdw-software
Copy link
Member

rdw-software commented Dec 29, 2022

Can probably port the one from NodeJS: https://nodejs.org/api/url.html#the-whatwg-url-api

Source: https://github.com/nodejs/node/blob/v19.3.0/lib/url.js

Some of the more esoteric features (internationalization) may not be very useful here. I'm mostly interested in the test cases, really.

Roadmap:

  • Port the existing test cases from NodeJS
  • Port the NodeJS implementation
  • Streamline interfaces where necessary (should be idiomatic)

Required for #137

@rdw-software
Copy link
Member Author

rdw-software commented Dec 30, 2022

After looking at the NodeJS code, it seems that porting their WHATWG URL module directly might be more trouble than it's worth:

  • Their test suite for the new URL API is basically just comparing the URL constructor against the web platform test data
  • There's some (very few) additional tests, which may or may not be worth porting as well
  • The implementation uses their (separately-tested) legacy URL module for many things
  • In typical NodeJS fashion, this implementation is rather messy and likely difficult to port (if that even is desirable...)
  • JavaScript also uses UTF16 and the test data (being JSON) appears to be encoded such that it would have to be transformed

All in all, this will be more work than originally anticipated. Instead, there may be some alternatives worth considering:

Lastly, I wonder how important having this module right now actually is. I want to get to WebSockets ASAP and having some basic HTTP functionality, just enough to complete the handshake really, might be enough even if the implementation isn't a fully spec-compliant HTTP server (or client, for that matter). So, perhaps shelving this until later is the better approach here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant