{ "source": "doc/api/url.md", "modules": [ { "textRaw": "URL", "name": "url", "stability": 2, "stabilityText": "Stable", "desc": "

The url module provides utilities for URL resolution and parsing. It can be\naccessed using:

\n
const url = require('url');\n
\n", "modules": [ { "textRaw": "URL Strings and URL Objects", "name": "url_strings_and_url_objects", "desc": "

A URL string is a structured string containing multiple meaningful components.\nWhen parsed, a URL object is returned containing properties for each of these\ncomponents.

\n

The following details each of the components of a parsed URL. The example\n'http://user:pass@host.com:8080/p/a/t/h?query=string#hash' is used to\nillustrate each.

\n
┌─────────────────────────────────────────────────────────────────────────────┐\n│                                    href                                     │\n├──────────┬┬───────────┬─────────────────┬───────────────────────────┬───────┤\n│ protocol ││   auth    │      host       │           path            │ hash  │\n│          ││           ├──────────┬──────┼──────────┬────────────────┤       │\n│          ││           │ hostname │ port │ pathname │     search     │       │\n│          ││           │          │      │          ├─┬──────────────┤       │\n│          ││           │          │      │          │ │    query     │       │\n"  http:   // user:pass @ host.com : 8080   /p/a/t/h  ?  query=string   #hash "\n│          ││           │          │      │          │ │              │       │\n└──────────┴┴───────────┴──────────┴──────┴──────────┴─┴──────────────┴───────┘\n(all spaces in the "" line should be ignored -- they are purely for formatting)\n
\n", "properties": [ { "textRaw": "urlObject.auth", "name": "auth", "desc": "

The auth property is the username and password portion of the URL, also\nreferred to as "userinfo". This string subset follows the protocol and\ndouble slashes (if present) and precedes the host component, delimited by an\nASCII "at sign" (@). The format of the string is {username}[:{password}],\nwith the [:{password}] portion being optional.

\n

For example: 'user:pass'

\n" }, { "textRaw": "urlObject.hash", "name": "hash", "desc": "

The hash property consists of the "fragment" portion of the URL including\nthe leading ASCII hash (#) character.

\n

For example: '#hash'

\n" }, { "textRaw": "urlObject.host", "name": "host", "desc": "

The host property is the full lower-cased host portion of the URL, including\nthe port if specified.

\n

For example: 'host.com:8080'

\n" }, { "textRaw": "urlObject.hostname", "name": "hostname", "desc": "

The hostname property is the lower-cased host name portion of the host\ncomponent without the port included.

\n

For example: 'host.com'

\n" }, { "textRaw": "urlObject.href", "name": "href", "desc": "

The href property is the full URL string that was parsed with both the\nprotocol and host components converted to lower-case.

\n

For example: 'http://user:pass@host.com:8080/p/a/t/h?query=string#hash'

\n" }, { "textRaw": "urlObject.path", "name": "path", "desc": "

The path property is a concatenation of the pathname and search\ncomponents.

\n

For example: '/p/a/t/h?query=string'

\n

No decoding of the path is performed.

\n" }, { "textRaw": "urlObject.pathname", "name": "pathname", "desc": "

The pathname property consists of the entire path section of the URL. This\nis everything following the host (including the port) and before the start\nof the query or hash components, delimited by either the ASCII question\nmark (?) or hash (#) characters.

\n

For example '/p/a/t/h'

\n

No decoding of the path string is performed.

\n" }, { "textRaw": "urlObject.port", "name": "port", "desc": "

The port property is the numeric port portion of the host component.

\n

For example: '8080'

\n" }, { "textRaw": "urlObject.protocol", "name": "protocol", "desc": "

The protocol property identifies the URL's lower-cased protocol scheme.

\n

For example: 'http:'

\n" }, { "textRaw": "urlObject.query", "name": "query", "desc": "

The query property is either the query string without the leading ASCII\nquestion mark (?), or an object returned by the querystring module's\nparse() method. Whether the query property is a string or object is\ndetermined by the parseQueryString argument passed to url.parse().

\n

For example: 'query=string' or {'query': 'string'}

\n

If returned as a string, no decoding of the query string is performed. If\nreturned as an object, both keys and values are decoded.

\n" }, { "textRaw": "urlObject.search", "name": "search", "desc": "

The search property consists of the entire "query string" portion of the\nURL, including the leading ASCII question mark (?) character.

\n

For example: '?query=string'

\n

No decoding of the query string is performed.

\n" }, { "textRaw": "urlObject.slashes", "name": "slashes", "desc": "

The slashes property is a boolean with a value of true if two ASCII\nforward-slash characters (/) are required following the colon in the\nprotocol.

\n" } ], "type": "module", "displayName": "URL Strings and URL Objects" }, { "textRaw": "Escaped Characters", "name": "escaped_characters", "desc": "

URLs are only permitted to contain a certain range of characters. Spaces (' ')\nand the following characters will be automatically escaped in the\nproperties of URL objects:

\n
< > " ` \\r \\n \\t { } | \\ ^ '\n
\n

For example, the ASCII space character (' ') is encoded as %20. The ASCII\nforward slash (/) character is encoded as %3C.

\n", "type": "module", "displayName": "Escaped Characters" }, { "textRaw": "The WHATWG URL API", "name": "the_whatwg_url_api", "stability": 1, "stabilityText": "Experimental", "desc": "

The url module provides an experimental implementation of the\nWHATWG URL Standard as an alternative to the existing url.parse() API.

\n
const URL = require('url').URL;\nconst myURL = new URL('https://example.org/foo');\n\nconsole.log(myURL.href);     // https://example.org/foo\nconsole.log(myURL.protocol); // https:\nconsole.log(myURL.hostname); // example.org\nconsole.log(myURL.pathname); // /foo\n
\n

Note: Using the delete keyword (e.g. delete myURL.protocol,\ndelete myURL.pathname, etc) has no effect but will still return true.

\n

A comparison between this API and url.parse() is given below. Above the URL\n'http://user:pass@host.com:8080/p/a/t/h?query=string#hash', properties of an\nobject returned by url.parse() are shown. Below it are properties of a WHATWG\nURL object.

\n

Note: WHATWG URL's origin property includes protocol and host, but not\nusername or password.

\n
┌─────────────────────────────────────────────────────────────────────────────────────────┐\n│                                          href                                           │\n├──────────┬──┬─────────────────────┬─────────────────┬───────────────────────────┬───────┤\n│ protocol │  │        auth         │      host       │           path            │ hash  │\n│          │  │                     ├──────────┬──────┼──────────┬────────────────┤       │\n│          │  │                     │ hostname │ port │ pathname │     search     │       │\n│          │  │                     │          │      │          ├─┬──────────────┤       │\n│          │  │                     │          │      │          │ │    query     │       │\n"  http:    //    user   :   pass   @ host.com : 8080   /p/a/t/h  ?  query=string   #hash "\n│          │  │          │          │ hostname │ port │          │                │       │\n│          │  │          │          ├──────────┴──────┤          │                │       │\n│ protocol │  │ username │ password │      host       │          │                │       │\n├──────────┴──┼──────────┴──────────┼─────────────────┤          │                │       │\n│   origin    │                     │     origin      │ pathname │     search     │ hash  │\n├─────────────┴─────────────────────┴─────────────────┴──────────┴────────────────┴───────┤\n│                                          href                                           │\n└─────────────────────────────────────────────────────────────────────────────────────────┘\n(all spaces in the "" line should be ignored -- they are purely for formatting)\n
\n", "classes": [ { "textRaw": "Class: URL", "type": "class", "name": "URL", "modules": [ { "textRaw": "Constructor: new URL(input[, base])", "name": "constructor:_new_url(input[,_base])", "desc": "\n

Creates a new URL object by parsing the input relative to the base. If\nbase is passed as a string, it will be parsed equivalent to new URL(base).

\n
const myURL = new URL('/foo', 'https://example.org/');\n  // https://example.org/foo\n
\n

A TypeError will be thrown if the input or base are not valid URLs. Note\nthat an effort will be made to coerce the given values into strings. For\ninstance:

\n
const myURL = new URL({toString: () => 'https://example.org/'});\n  // https://example.org/\n
\n

Unicode characters appearing within the hostname of input will be\nautomatically converted to ASCII using the Punycode algorithm.

\n
const myURL = new URL('https://你好你好');\n  // https://xn--6qqa088eba/\n
\n

Additional examples of parsed URLs may be found in the WHATWG URL Standard.

\n", "type": "module", "displayName": "Constructor: new URL(input[, base])" } ], "properties": [ { "textRaw": "`hash` {String} ", "type": "String", "name": "hash", "desc": "

Gets and sets the fragment portion of the URL.

\n
const myURL = new URL('https://example.org/foo#bar');\nconsole.log(myURL.hash);\n  // Prints #bar\n\nmyURL.hash = 'baz';\nconsole.log(myURL.href);\n  // Prints https://example.org/foo#baz\n
\n

Invalid URL characters included in the value assigned to the hash property\nare percent-encoded. Note that the selection of which characters to\npercent-encode may vary somewhat from what the url.parse() and\nurl.format() methods would produce.

\n" }, { "textRaw": "`host` {String} ", "type": "String", "name": "host", "desc": "

Gets and sets the host portion of the URL.

\n
const myURL = new URL('https://example.org:81/foo');\nconsole.log(myURL.host);\n  // Prints example.org:81\n\nmyURL.host = 'example.com:82';\nconsole.log(myURL.href);\n  // Prints https://example.com:82/foo\n
\n

Invalid host values assigned to the host property are ignored.

\n" }, { "textRaw": "`hostname` {String} ", "type": "String", "name": "hostname", "desc": "

Gets and sets the hostname portion of the URL. The key difference between\nurl.host and url.hostname is that url.hostname does not include the\nport.

\n
const myURL = new URL('https://example.org:81/foo');\nconsole.log(myURL.hostname);\n  // Prints example.org\n\nmyURL.hostname = 'example.com:82';\nconsole.log(myURL.href);\n  // Prints https://example.com:81/foo\n
\n

Invalid hostname values assigned to the hostname property are ignored.

\n" }, { "textRaw": "`href` {String} ", "type": "String", "name": "href", "desc": "

Gets and sets the serialized URL.

\n
const myURL = new URL('https://example.org/foo');\nconsole.log(myURL.href);\n  // Prints https://example.org/foo\n\nmyURL.href = 'https://example.com/bar'\n  // Prints https://example.com/bar\n
\n

Getting the value of the href property is equivalent to calling\nurl.toString().

\n

Setting the value of this property to a new value is equivalent to creating a\nnew URL object using new URL(value). Each of the URL\nobject's properties will be modified.

\n

If the value assigned to the href property is not a valid URL, a TypeError\nwill be thrown.

\n" }, { "textRaw": "`origin` {String} ", "type": "String", "name": "origin", "desc": "

Gets the read-only serialization of the URL's origin. Unicode characters that\nmay be contained within the hostname will be encoded as-is without Punycode\nencoding.

\n
const myURL = new URL('https://example.org/foo/bar?baz');\nconsole.log(myURL.origin);\n  // Prints https://example.org\n
\n
const idnURL = new URL('https://你好你好');\nconsole.log(idnURL.origin);\n  // Prints https://你好你好\n\nconsole.log(idnURL.hostname);\n  // Prints xn--6qqa088eba\n
\n" }, { "textRaw": "`password` {String} ", "type": "String", "name": "password", "desc": "

Gets and sets the password portion of the URL.

\n
const myURL = new URL('https://abc:xyz@example.com');\nconsole.log(myURL.password);\n  // Prints xyz\n\nmyURL.password = '123';\nconsole.log(myURL.href);\n  // Prints https://abc:123@example.com\n
\n

Invalid URL characters included in the value assigned to the password property\nare percent-encoded. Note that the selection of which characters to\npercent-encode may vary somewhat from what the url.parse() and\nurl.format() methods would produce.

\n" }, { "textRaw": "`pathname` {String} ", "type": "String", "name": "pathname", "desc": "

Gets and sets the path portion of the URL.

\n
const myURL = new URL('https://example.org/abc/xyz?123');\nconsole.log(myURL.pathname);\n  // Prints /abc/xyz\n\nmyURL.pathname = '/abcdef';\nconsole.log(myURL.href);\n  // Prints https://example.org/abcdef?123\n
\n

Invalid URL characters included in the value assigned to the pathname\nproperty are percent-encoded. Note that the selection of which characters\nto percent-encode may vary somewhat from what the url.parse() and\nurl.format() methods would produce.

\n" }, { "textRaw": "`port` {String} ", "type": "String", "name": "port", "desc": "

Gets and sets the port portion of the URL.

\n
const myURL = new URL('https://example.org:8888');\nconsole.log(myURL.port);\n  // Prints 8888\n\n// Default ports are automatically transformed to the empty string\n// (HTTPS protocol's default port is 443)\nmyURL.port = '443';\nconsole.log(myURL.port);\n  // Prints the empty string\nconsole.log(myURL.href);\n  // Prints https://example.org/\n\nmyURL.port = 1234;\nconsole.log(myURL.port);\n  // Prints 1234\nconsole.log(myURL.href);\n  // Prints https://example.org:1234/\n\n// Completely invalid port strings are ignored\nmyURL.port = 'abcd';\nconsole.log(myURL.port);\n  // Prints 1234\n\n// Leading numbers are treated as a port number\nmyURL.port = '5678abcd';\nconsole.log(myURL.port);\n  // Prints 5678\n\n// Non-integers are truncated\nmyURL.port = 1234.5678;\nconsole.log(myURL.port);\n  // Prints 1234\n\n// Out-of-range numbers are ignored\nmyURL.port = 1e10;\nconsole.log(myURL.port);\n  // Prints 1234\n
\n

The port value may be set as either a number or as a String containing a number\nin the range 0 to 65535 (inclusive). Setting the value to the default port\nof the URL objects given protocol will result in the port value becoming\nthe empty string ('').

\n

If an invalid string is assigned to the port property, but it begins with a\nnumber, the leading number is assigned to port. Otherwise, or if the number\nlies outside the range denoted above, it is ignored.

\n" }, { "textRaw": "`protocol` {String} ", "type": "String", "name": "protocol", "desc": "

Gets and sets the protocol portion of the URL.

\n
const myURL = new URL('https://example.org');\nconsole.log(myURL.protocol);\n  // Prints http:\n\nmyURL.protocol = 'ftp';\nconsole.log(myURL.href);\n  // Prints ftp://example.org\n
\n

Invalid URL protocol values assigned to the protocol property are ignored.

\n" }, { "textRaw": "`search` {String} ", "type": "String", "name": "search", "desc": "

Gets and sets the serialized query portion of the URL.

\n
const myURL = new URL('https://example.org/abc?123');\nconsole.log(myURL.search);\n  // Prints ?123\n\nmyURL.search = 'abc=xyz';\nconsole.log(myURL.href);\n  // Prints https://example.org/abc?abc=xyz\n
\n

Any invalid URL characters appearing in the value assigned the search\nproperty will be percent-encoded. Note that the selection of which\ncharacters to percent-encode may vary somewhat from what the url.parse()\nand url.format() methods would produce.

\n" }, { "textRaw": "`searchParams` {URLSearchParams} ", "type": "URLSearchParams", "name": "searchParams", "desc": "

Gets the URLSearchParams object representing the query parameters of the\nURL. This property is read-only; to replace the entirety of query parameters of\nthe URL, use the url.search setter. See URLSearchParams\ndocumentation for details.

\n" }, { "textRaw": "`username` {String} ", "type": "String", "name": "username", "desc": "

Gets and sets the username portion of the URL.

\n
const myURL = new URL('https://abc:xyz@example.com');\nconsole.log(myURL.username);\n  // Prints abc\n\nmyURL.username = '123';\nconsole.log(myURL.href);\n  // Prints https://123:xyz@example.com\n
\n

Any invalid URL characters appearing in the value assigned the username\nproperty will be percent-encoded. Note that the selection of which\ncharacters to percent-encode may vary somewhat from what the url.parse()\nand url.format() methods would produce.

\n" } ], "methods": [ { "textRaw": "url.toString()", "type": "method", "name": "toString", "signatures": [ { "return": { "textRaw": "Returns: {String} ", "name": "return", "type": "String" }, "params": [] }, { "params": [] } ], "desc": "

The toString() method on the URL object returns the serialized URL. The\nvalue returned is equivalent to that of url.href and url.toJSON().

\n

Because of the need for standard compliance, this method does not allow users\nto customize the serialization process of the URL. For more flexibility,\nrequire('url').format() method might be of interest.

\n" }, { "textRaw": "url.toJSON()", "type": "method", "name": "toJSON", "signatures": [ { "return": { "textRaw": "Returns: {String} ", "name": "return", "type": "String" }, "params": [] }, { "params": [] } ], "desc": "

The toJSON() method on the URL object returns the serialized URL. The\nvalue returned is equivalent to that of url.href and\nurl.toString().

\n

This method is automatically called when an URL object is serialized\nwith JSON.stringify().

\n
const myURLs = [\n  new URL('https://www.example.com'),\n  new URL('https://test.example.org')\n];\nconsole.log(JSON.stringify(myURLs));\n  // Prints ["https://www.example.com/","https://test.example.org/"]\n
\n" } ] }, { "textRaw": "Class: URLSearchParams", "type": "class", "name": "URLSearchParams", "desc": "

The URLSearchParams API provides read and write access to the query of a\nURL.

\n

The WHATWG URLSearchParams interface and the querystring module have\nsimilar purpose, but the purpose of the querystring module is more\ngeneral, as it allows the customization of delimiter characters (& and =).\nOn the other hand, this API is designed purely for URL query strings.

\n
const URL = require('url').URL;\nconst myURL = new URL('https://example.org/?abc=123');\nconsole.log(myURL.searchParams.get('abc'));\n  // Prints 123\n\nmyURL.searchParams.append('abc', 'xyz');\nconsole.log(myURL.href);\n  // Prints https://example.org/?abc=123&abc=xyz\n\nmyURL.searchParams.delete('abc');\nmyURL.searchParams.set('a', 'b');\nconsole.log(myURL.href);\n  // Prints https://example.org/?a=b\n
\n", "methods": [ { "textRaw": "Constructor: new URLSearchParams([init])", "name": "Constructor: new URLSearchParams([init])", "desc": "\n", "type": "method", "signatures": [ { "params": [ { "textRaw": "`name` {String} ", "name": "name", "type": "String" }, { "textRaw": "`value` {String} ", "name": "value", "type": "String" } ] }, { "params": [ { "name": "name" }, { "name": "value" } ] }, { "params": [ { "name": "init", "optional": true } ] } ] }, { "textRaw": "urlSearchParams.append(name, value)", "type": "method", "name": "append", "signatures": [ { "params": [ { "textRaw": "`name` {String} ", "name": "name", "type": "String" }, { "textRaw": "`value` {String} ", "name": "value", "type": "String" } ] }, { "params": [ { "name": "name" }, { "name": "value" } ] } ], "desc": "

Append a new name-value pair to the query string.

\n" }, { "textRaw": "urlSearchParams.delete(name)", "type": "method", "name": "delete", "signatures": [ { "params": [ { "textRaw": "`name` {String} ", "name": "name", "type": "String" } ] }, { "params": [ { "name": "name" } ] } ], "desc": "

Remove all name-value pairs whose name is name.

\n" }, { "textRaw": "urlSearchParams.entries()", "type": "method", "name": "entries", "signatures": [ { "return": { "textRaw": "Returns: {Iterator} ", "name": "return", "type": "Iterator" }, "params": [] }, { "params": [] } ], "desc": "

Returns an ES6 Iterator over each of the name-value pairs in the query.\nEach item of the iterator is a JavaScript Array. The first item of the Array\nis the name, the second item of the Array is the value.

\n

Alias for urlSearchParams[@@iterator]().

\n" }, { "textRaw": "urlSearchParams.forEach(fn[, thisArg])", "type": "method", "name": "forEach", "signatures": [ { "params": [ { "textRaw": "`fn` {Function} Function invoked for each name-value pair in the query. ", "name": "fn", "type": "Function", "desc": "Function invoked for each name-value pair in the query." }, { "textRaw": "`thisArg` {Object} Object to be used as `this` value for when `fn` is called ", "name": "thisArg", "type": "Object", "desc": "Object to be used as `this` value for when `fn` is called", "optional": true } ] }, { "params": [ { "name": "fn" }, { "name": "thisArg", "optional": true } ] } ], "desc": "

Iterates over each name-value pair in the query and invokes the given function.

\n
const URL = require('url').URL;\nconst myURL = new URL('https://example.org/?a=b&c=d');\nmyURL.searchParams.forEach((value, name, searchParams) => {\n  console.log(name, value, myURL.searchParams === searchParams);\n});\n  // Prints:\n  // a b true\n  // c d true\n
\n" }, { "textRaw": "urlSearchParams.get(name)", "type": "method", "name": "get", "signatures": [ { "return": { "textRaw": "Returns: {String | Null} ", "name": "return", "type": "String | Null" }, "params": [ { "textRaw": "`name` {String} ", "name": "name", "type": "String" } ] }, { "params": [ { "name": "name" } ] } ], "desc": "

Returns the value of the first name-value pair whose name is name. If there\nare no such pairs, null is returned.

\n" }, { "textRaw": "urlSearchParams.getAll(name)", "type": "method", "name": "getAll", "signatures": [ { "return": { "textRaw": "Returns: {Array} ", "name": "return", "type": "Array" }, "params": [ { "textRaw": "`name` {String} ", "name": "name", "type": "String" } ] }, { "params": [ { "name": "name" } ] } ], "desc": "

Returns the values of all name-value pairs whose name is name. If there are\nno such pairs, an empty array is returned.

\n" }, { "textRaw": "urlSearchParams.has(name)", "type": "method", "name": "has", "signatures": [ { "return": { "textRaw": "Returns: {Boolean} ", "name": "return", "type": "Boolean" }, "params": [ { "textRaw": "`name` {String} ", "name": "name", "type": "String" } ] }, { "params": [ { "name": "name" } ] } ], "desc": "

Returns true if there is at least one name-value pair whose name is name.

\n" }, { "textRaw": "urlSearchParams.keys()", "type": "method", "name": "keys", "signatures": [ { "return": { "textRaw": "Returns: {Iterator} ", "name": "return", "type": "Iterator" }, "params": [] }, { "params": [] } ], "desc": "

Returns an ES6 Iterator over the names of each name-value pair.

\n
const { URLSearchParams } = require('url');\nconst params = new URLSearchParams('foo=bar&foo=baz');\nfor (const name of params.keys()) {\n  console.log(name);\n}\n  // Prints:\n  // foo\n  // foo\n
\n" }, { "textRaw": "urlSearchParams.set(name, value)", "type": "method", "name": "set", "signatures": [ { "params": [ { "textRaw": "`name` {String} ", "name": "name", "type": "String" }, { "textRaw": "`value` {String} ", "name": "value", "type": "String" } ] }, { "params": [ { "name": "name" }, { "name": "value" } ] } ], "desc": "

Sets the value in the URLSearchParams object associated with name to\nvalue. If there are any pre-existing name-value pairs whose names are name,\nset the first such pair's value to value and remove all others. If not,\nappend the name-value pair to the query string.

\n
const { URLSearchParams } = require('url');\n\nconst params = new URLSearchParams();\nparams.append('foo', 'bar');\nparams.append('foo', 'baz');\nparams.append('abc', 'def');\nconsole.log(params.toString());\n  // Prints foo=bar&foo=baz&abc=def\n\nparams.set('foo', 'def');\nparams.set('xyz', 'opq');\nconsole.log(params.toString());\n  // Prints foo=def&abc=def&xyz=opq\n
\n" }, { "textRaw": "urlSearchParams.sort()", "type": "method", "name": "sort", "desc": "

Sort all existing name-value pairs in-place by their names. Sorting is done\nwith a stable sorting algorithm, so relative order between name-value pairs\nwith the same name is preserved.

\n

This method can be used, in particular, to increase cache hits.

\n
const params = new URLSearchParams('query[]=abc&type=search&query[]=123');\nparams.sort();\nconsole.log(params.toString());\n  // Prints query%5B%5D=abc&query%5B%5D=123&type=search\n
\n", "signatures": [ { "params": [] } ] }, { "textRaw": "urlSearchParams.toString()", "type": "method", "name": "toString", "signatures": [ { "return": { "textRaw": "Returns: {String} ", "name": "return", "type": "String" }, "params": [] }, { "params": [] } ], "desc": "

Returns the search parameters serialized as a string, with characters\npercent-encoded where necessary.

\n" }, { "textRaw": "urlSearchParams.values()", "type": "method", "name": "values", "signatures": [ { "return": { "textRaw": "Returns: {Iterator} ", "name": "return", "type": "Iterator" }, "params": [] }, { "params": [] } ], "desc": "

Returns an ES6 Iterator over the values of each name-value pair.

\n" }, { "textRaw": "urlSearchParams\\[@@iterator\\]()", "type": "method", "name": "urlSearchParams\\[@@iterator\\]", "signatures": [ { "return": { "textRaw": "Returns: {Iterator} ", "name": "return", "type": "Iterator" }, "params": [] }, { "params": [] } ], "desc": "

Returns an ES6 Iterator over each of the name-value pairs in the query string.\nEach item of the iterator is a JavaScript Array. The first item of the Array\nis the name, the second item of the Array is the value.

\n

Alias for urlSearchParams.entries().

\n
const { URLSearchParams } = require('url');\nconst params = new URLSearchParams('foo=bar&xyz=baz');\nfor (const [name, value] of params) {\n  console.log(name, value);\n}\n  // Prints:\n  // foo bar\n  // xyz baz\n
\n" } ] } ], "methods": [ { "textRaw": "require('url').domainToAscii(domain)", "type": "method", "name": "domainToAscii", "signatures": [ { "return": { "textRaw": "Returns: {String} ", "name": "return", "type": "String" }, "params": [ { "textRaw": "`domain` {String} ", "name": "domain", "type": "String" } ] }, { "params": [ { "name": "'url').domainToAscii(domain" } ] } ], "desc": "

Returns the Punycode ASCII serialization of the domain.

\n

Note: The require('url').domainToAscii() method is introduced as part of\nthe new URL implementation but is not part of the WHATWG URL standard.

\n" }, { "textRaw": "require('url').domainToUnicode(domain)", "type": "method", "name": "domainToUnicode", "signatures": [ { "return": { "textRaw": "Returns: {String} ", "name": "return", "type": "String" }, "params": [ { "textRaw": "`domain` {String} ", "name": "domain", "type": "String" } ] }, { "params": [ { "name": "'url').domainToUnicode(domain" } ] } ], "desc": "

Returns the Unicode serialization of the domain.

\n

Note: The require('url').domainToUnicode() API is introduced as part of the\nthe new URL implementation but is not part of the WHATWG URL standard.

\n

\n" } ], "modules": [ { "textRaw": "Percent-Encoding in the WHATWG URL Standard", "name": "percent-encoding_in_the_whatwg_url_standard", "desc": "

URLs are permitted to only contain a certain range of characters. Any character\nfalling outside of that range must be encoded. How such characters are encoded,\nand which characters to encode depends entirely on where the character is\nlocated within the structure of the URL. The WHATWG URL Standard uses a more\nselective and fine grained approach to selecting encoded characters than that\nused by the older url.parse() and url.format() methods.

\n

The WHATWG algorithm defines three "encoding sets" that describe ranges of\ncharacters that must be percent-encoded:

\n\n

The simple encode set is used primary for URL fragments and certain specific\nconditions for the path. The userinfo encode set is used specifically for\nusername and passwords encoded within the URL. The default encode set is used\nfor all other cases.

\n

When non-ASCII characters appear within a hostname, the hostname is encoded\nusing the Punycode algorithm. Note, however, that a hostname may contain\nboth Punycode encoded and percent-encoded characters. For example:

\n
const URL = require('url').URL;\nconst myURL = new URL('https://%CF%80.com/foo');\nconsole.log(myURL.href);\n  // Prints https://xn--1xa.com/foo\nconsole.log(myURL.origin);\n  // Prints https://π.com\n
\n", "type": "module", "displayName": "Percent-Encoding in the WHATWG URL Standard" } ], "type": "module", "displayName": "The WHATWG URL API" } ], "methods": [ { "textRaw": "url.format(urlObject)", "type": "method", "name": "format", "meta": { "added": [ "v0.1.25" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`urlObject` {Object | String} A URL object (as returned by `url.parse()` or constructed otherwise). If a string, it is converted to an object by passing it to `url.parse()`. ", "name": "urlObject", "type": "Object | String", "desc": "A URL object (as returned by `url.parse()` or constructed otherwise). If a string, it is converted to an object by passing it to `url.parse()`." } ] }, { "params": [ { "name": "urlObject" } ] } ], "desc": "

The url.format() method returns a formatted URL string derived from\nurlObject.

\n

If urlObject is not an object or a string, url.parse() will throw a\nTypeError.

\n

The formatting process operates as follows:

\n\n" }, { "textRaw": "url.format(URL[, options])", "type": "method", "name": "format", "stability": 1, "stabilityText": "Experimental", "signatures": [ { "params": [ { "textRaw": "`URL` {URL} A [WHATWG URL][] object ", "name": "URL", "type": "URL", "desc": "A [WHATWG URL][] object" }, { "textRaw": "`options` {Object} ", "options": [ { "textRaw": "`auth` {Boolean} `true` if the serialized URL string should include the username and password, `false` otherwise. Defaults to `true`. ", "name": "auth", "type": "Boolean", "desc": "`true` if the serialized URL string should include the username and password, `false` otherwise. Defaults to `true`." }, { "textRaw": "`fragment` {Boolean} `true` if the serialized URL string should include the fragment, `false` otherwise. Defaults to `true`. ", "name": "fragment", "type": "Boolean", "desc": "`true` if the serialized URL string should include the fragment, `false` otherwise. Defaults to `true`." }, { "textRaw": "`search` {Boolean} `true` if the serialized URL string should include the search query, `false` otherwise. Defaults to `true`. ", "name": "search", "type": "Boolean", "desc": "`true` if the serialized URL string should include the search query, `false` otherwise. Defaults to `true`." }, { "textRaw": "`unicode` (Boolean) `true` if Unicode characters appearing in the host component of the URL string should be encoded directly as opposed to being Punycode encoded. Defaults to `false`. ", "name": "unicode", "desc": "(Boolean) `true` if Unicode characters appearing in the host component of the URL string should be encoded directly as opposed to being Punycode encoded. Defaults to `false`." } ], "name": "options", "type": "Object", "optional": true } ] }, { "params": [ { "name": "URL" }, { "name": "options", "optional": true } ] } ], "desc": "

Returns a customizable serialization of a URL String representation of a\nWHATWG URL object.

\n

The URL object has both a toString() method and href property that return\nstring serializations of the URL. These are not, however, customizable in\nany way. The url.format(URL[, options]) method allows for basic customization\nof the output.

\n

For example:

\n
const myURL = new URL('https://a:b@你好你好?abc#foo');\n\nconsole.log(myURL.href);\n  // Prints https://a:b@xn--6qqa088eba/?abc#foo\n\nconsole.log(myURL.toString());\n  // Prints https://a:b@xn--6qqa088eba/?abc#foo\n\nconsole.log(url.format(myURL, {fragment: false, unicode: true, auth: false}));\n  // Prints 'https://你好你好?abc'\n
\n

Note: This variation of the url.format() method is currently considered to\nbe experimental.

\n" }, { "textRaw": "url.parse(urlString[, parseQueryString[, slashesDenoteHost]])", "type": "method", "name": "parse", "meta": { "added": [ "v0.1.25" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`urlString` {String} The URL string to parse. ", "name": "urlString", "type": "String", "desc": "The URL string to parse." }, { "textRaw": "`parseQueryString` {Boolean} If `true`, the `query` property will always be set to an object returned by the [`querystring`][] module's `parse()` method. If `false`, the `query` property on the returned URL object will be an unparsed, undecoded string. Defaults to `false`. ", "name": "parseQueryString", "type": "Boolean", "desc": "If `true`, the `query` property will always be set to an object returned by the [`querystring`][] module's `parse()` method. If `false`, the `query` property on the returned URL object will be an unparsed, undecoded string. Defaults to `false`.", "optional": true }, { "textRaw": "`slashesDenoteHost` {Boolean} If `true`, the first token after the literal string `//` and preceding the next `/` will be interpreted as the `host`. For instance, given `//foo/bar`, the result would be `{host: 'foo', pathname: '/bar'}` rather than `{pathname: '//foo/bar'}`. Defaults to `false`. ", "name": "slashesDenoteHost", "type": "Boolean", "desc": "If `true`, the first token after the literal string `//` and preceding the next `/` will be interpreted as the `host`. For instance, given `//foo/bar`, the result would be `{host: 'foo', pathname: '/bar'}` rather than `{pathname: '//foo/bar'}`. Defaults to `false`.", "optional": true } ] }, { "params": [ { "name": "urlString" }, { "name": "parseQueryString", "optional": true }, { "name": "slashesDenoteHost", "optional": true } ] } ], "desc": "

The url.parse() method takes a URL string, parses it, and returns a URL\nobject.

\n" }, { "textRaw": "url.resolve(from, to)", "type": "method", "name": "resolve", "meta": { "added": [ "v0.1.25" ], "changes": [ { "version": "v6.6.0", "pr-url": "https://github.com/nodejs/node/pull/8215", "description": "The `auth` fields are now kept intact when `from` and `to` refer to the same host." }, { "version": "v6.5.0, v4.6.2", "pr-url": "https://github.com/nodejs/node/pull/8214", "description": "The `port` field is copied correctly now." }, { "version": "v6.0.0", "pr-url": "https://github.com/nodejs/node/pull/1480", "description": "The `auth` fields is cleared now the `to` parameter contains a hostname." } ] }, "signatures": [ { "params": [ { "textRaw": "`from` {String} The Base URL being resolved against. ", "name": "from", "type": "String", "desc": "The Base URL being resolved against." }, { "textRaw": "`to` {String} The HREF URL being resolved. ", "name": "to", "type": "String", "desc": "The HREF URL being resolved." } ] }, { "params": [ { "name": "from" }, { "name": "to" } ] } ], "desc": "

The url.resolve() method resolves a target URL relative to a base URL in a\nmanner similar to that of a Web browser resolving an anchor tag HREF.

\n

For example:

\n
url.resolve('/one/two/three', 'four')         // '/one/two/four'\nurl.resolve('http://example.com/', '/one')    // 'http://example.com/one'\nurl.resolve('http://example.com/one', '/two') // 'http://example.com/two'\n
\n" } ], "type": "module", "displayName": "URL" } ] }