The url.resolve() method resolves a target URL relative to a base URL in a manner similar to that of a web browser resolving an anchor tag.
url.resolve()
import url from 'node:url';url.resolve('/one/two/three', 'four'); // '/one/two/four'url.resolve('http://example.com/', '/one'); // 'http://example.com/one'url.resolve('http://example.com/one', '/two'); // 'http://example.com/two' Copy
import url from 'node:url';url.resolve('/one/two/three', 'four'); // '/one/two/four'url.resolve('http://example.com/', '/one'); // 'http://example.com/one'url.resolve('http://example.com/one', '/two'); // 'http://example.com/two'
To achieve the same result using the WHATWG URL API:
function resolve(from, to) { const resolvedUrl = new URL(to, new URL(from, 'resolve://')); if (resolvedUrl.protocol === 'resolve:') { // `from` is a relative URL. const { pathname, search, hash } = resolvedUrl; return pathname + search + hash; } return resolvedUrl.toString();}resolve('/one/two/three', 'four'); // '/one/two/four'resolve('http://example.com/', '/one'); // 'http://example.com/one'resolve('http://example.com/one', '/two'); // 'http://example.com/two' Copy
function resolve(from, to) { const resolvedUrl = new URL(to, new URL(from, 'resolve://')); if (resolvedUrl.protocol === 'resolve:') { // `from` is a relative URL. const { pathname, search, hash } = resolvedUrl; return pathname + search + hash; } return resolvedUrl.toString();}resolve('/one/two/three', 'four'); // '/one/two/four'resolve('http://example.com/', '/one'); // 'http://example.com/one'resolve('http://example.com/one', '/two'); // 'http://example.com/two'
The base URL to use if to is a relative URL.
to
The target URL to resolve.
v0.1.25
Use the WHATWG URL API instead.
The
url.resolve()
method resolves a target URL relative to a base URL in a manner similar to that of a web browser resolving an anchor tag.To achieve the same result using the WHATWG URL API: