function parse
Jump to headingparse(urlString: string): UrlWithStringQueryDeprecated
The url.parse() method takes a URL string, parses it, and returns a URL
object.
A TypeError is thrown if urlString is not a string.
A URIError is thrown if the auth property is present but cannot be decoded.
url.parse() uses a lenient, non-standard algorithm for parsing URL
strings. It is prone to security issues such as host name spoofing and incorrect handling of usernames and passwords. Do not use with untrusted
input. CVEs are not issued for url.parse() vulnerabilities. Use the WHATWG URL API instead.
Parameters Jump to heading
Jump to headingurlString: stringThe URL string to parse.
Return Type Jump to heading
Jump to headingparse(urlString: string,parseQueryString: false | undefined,slashesDenoteHost?: boolean,): UrlWithStringQueryParameters Jump to heading
Jump to headingurlString: stringJump to headingparseQueryString: false | undefinedoptional
Jump to headingslashesDenoteHost: booleanReturn Type Jump to heading
Jump to headingparse(urlString: string,parseQueryString: true,slashesDenoteHost?: boolean,): UrlWithParsedQueryParameters Jump to heading
Jump to headingurlString: stringJump to headingparseQueryString: trueoptional
Jump to headingslashesDenoteHost: booleanReturn Type Jump to heading
Jump to headingparse(urlString: string,parseQueryString: boolean,slashesDenoteHost?: boolean,): UrlParameters Jump to heading
Jump to headingurlString: stringJump to headingparseQueryString: booleanoptional
Jump to headingslashesDenoteHost: boolean