Function buildUrl

Builds a URL either from an object of URL parts or from overriding a base URL string.

  • Build a URL straight from overrides.

    Parameters

    • override:
          | string
          | Readonly<
              PartialWithUndefined<
                  {
                      hash?: string;
                      hostname?: string;
                      password?: string;
                      pathname?: string;
                      paths?: readonly string[];
                      port?: string
                      | number;
                      protocol?: string;
                      search?: string | Readonly<SearchParamsInput>;
                      username?: string;
                  },
              >,
          >
          | URL
    • Optionaloptions: Readonly<
          {
              encoding?: Encode
              | Decode
              | None;
              searchParamStrategy?: Clear | Replace | Append;
          },
      >

    Returns Readonly

    import {buildUrl} from 'url-vir';

    buildUrl({
    hostname: 'example.com',
    search: {
    hello: 'there',
    },
    });

    buildUrl.href; // `'example.com/?hello=there'`
  • Build a URL by overriding an existing base URL string.

    Parameters

    • baseUrl:
          | string
          | URL
          | Readonly<
              Readonly<
                  {
                      fullPath: string;
                      hash: string;
                      host: string;
                      hostname: string;
                      href: string;
                      origin: string;
                      password: string;
                      pathname: string;
                      paths: readonly string[];
                      port: string;
                      protocol: string;
                      search: string;
                      searchParams: Readonly<Record<string, readonly string[]>>;
                      username: string;
                  },
              >,
          >
    • override:
          | string
          | Readonly<
              PartialWithUndefined<
                  {
                      hash?: string;
                      hostname?: string;
                      password?: string;
                      pathname?: string;
                      paths?: readonly string[];
                      port?: string
                      | number;
                      protocol?: string;
                      search?: string | Readonly<SearchParamsInput>;
                      username?: string;
                  },
              >,
          >
          | URL
    • Optionaloptions: Readonly<
          {
              encoding?: Encode
              | Decode
              | None;
              searchParamStrategy?: Clear | Replace | Append;
          },
      >

    Returns Readonly

    import {buildUrl} from 'url-vir';

    buildUrl('github.com/?hello=there', {
    hostname: 'example.com',
    });

    buildUrl.href; // `'example.com/?hello=there'`