-
Notifications
You must be signed in to change notification settings - Fork 125
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
url
stdlib module
#2181
Comments
Hey, I'd like to take a stab at this :D |
Cool, shall I assign you to this issue? Do you need any guidance? Please check those links above first and see if they are helpful for you. Here is an example on how to conduct tests on your implementations: https://github.com/tremor-rs/tremor-runtime/blob/main/tremor-cli/tests/stdlib/std/all.tremor#L630-L643 |
Awesome, the rust part isn't too tough on this, the steps to take is:
If you get stuck at any point feel free to ping or drop a message in the discord! |
Describe the problem you are trying to solve
Parsing urls as strings is hard, manipulating and evaluating them is even harder, although it doesn't have to be.
Describe the solution you'd like
We would like to have a stdlib module for tremor-script that makes it possible to parse a url structure from a string and construct a url from parts and modify existing urls.
Those functions would be implemented in the existing
std::url
module:Example script (just my imagination going wild, could be implemented totally differently):
The text was updated successfully, but these errors were encountered: