<!--your preparation HTML code goes here-->
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
const url = 'https://www.marksandspencer.com/l/kids/girls/footwear/boots/fs5/chelsea-boots?test=test&foo=foo#something'
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
}
const [ parsedUrl ] = url.split('?');
const urlOb = new URL(url);
const parsedUrl = `${urlOb.origin}${urlOb.pathname}`
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
split | |
url |
Test name | Executions per second |
---|---|
split | 40784552.0 Ops/sec |
url | 1377064.4 Ops/sec |
The benchmark provided compares two different approaches for extracting the canonical URL from a complete URL string. The two methods being tested are:
Using the String split
Method:
const [ parsedUrl ] = url.split('?');
Using the URL Object:
const urlOb = new URL(url); const parsedUrl = \
${urlOb.origin}${urlOb.pathname}`;`split
Method:
split()
to separate the URL at the ?
, effectively discarding the query parameters and retaining only the base URL (also known as the canonical URL).URL
Object:
URL
constructor to create a URL object from a string. The origin
and pathname
properties of the URL object are then used to reconstruct the canonical URL.split
Method:
split
method is less robust for complex URL manipulations or validations. It assumes that the provided string is a valid URL format.URL
Object:
URL
object is designed to manage URLs more comprehensively, handling various edge cases and providing methods to manipulate URL components easily.origin
and pathname
make it clear what parts of the URL are being accessed.URL
object as compared to a simple string operation.Use Case: The choice between these two methods may depend on the context of the application. If a robust handling of URLs is required, the URL
method is preferable despite its performance cost. However, for performance-critical applications where URLs are guaranteed to be well-formed, the split
method may be the better option.
Browser Compatibility: The URL
object might not be supported in very old browsers; although it's widely supported in modern browsers. Developers must consider the environments in which their applications will run.
Regular Expressions: Another alternative for parsing URLs could be using regular expressions. This method can provide flexibility and allow for complex parsing requirements, though it may be less readable and more error-prone than the built-in options. Performance could be a concern depending on the complexity of the regex.
Third-party Libraries: Libraries like query-string
or url-parse
can be leveraged for more advanced URL manipulations, but these come with their own performance implications and add external dependencies to the project.
In summary, the benchmark measures two distinct strategies for parsing URLs, with trade-offs between performance and robustness. The decision on which method to use should align with the project's specific requirements and constraints.