# @oozcitak/url

> An implementation of the URL Living Standard

Latest version **4.0.0** (published 2026-02-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install @oozcitak/url
pnpm add @oozcitak/url
yarn add @oozcitak/url
bun add @oozcitak/url
```

## Health

**Score 55/100 (C)** — status: stable.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

## Facts

| | |
|---|---|
| Version | 4.0.0 |
| Published | 2026-02-03 |
| First published | 2019-10-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Node | >=20.0 |
| Dependencies | 2 |
| Unpacked size | 193.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Ozgur Ozcitak |
| Maintainers | oozcitak |
| Keywords | url, whatwg |

## Links

- npm: https://www.npmjs.com/package/@oozcitak/url
- Repository: https://github.com/oozcitak/url
- Homepage: http://github.com/oozcitak/url
- Issues: http://github.com/oozcitak/url/issues
- npm.io page: https://npm.io/package/@oozcitak/url

## Dependencies (2)

- [@oozcitak/util](https://npm.io/package/@oozcitak/util.md) ^11.0.0
- [@oozcitak/infra](https://npm.io/package/@oozcitak/infra.md) ^3.0.0

## Alternatives

- [base64url](https://npm.io/package/base64url.md) — 6.1M weekly downloads
- [get-installed-path](https://npm.io/package/get-installed-path.md) — 502.9K weekly downloads
- [@uppy/url](https://npm.io/package/@uppy/url.md) — 185.8K weekly downloads
- [@d3fc/d3fc-shape](https://npm.io/package/@d3fc/d3fc-shape.md) — 16.2K weekly downloads
- [localizer](https://npm.io/package/localizer.md) — 226 weekly downloads

## Recent versions

- 4.0.0 (latest) — 2026-02-03
- 3.0.0 — 2025-11-26
- 2.0.1 — 2025-10-08
- 2.0.0 — 2025-10-07
- 1.0.4 — 2020-06-30
- 1.0.3 — 2020-06-29
- 1.0.1 — 2020-06-29
- 1.0.0 — 2019-12-24
- 0.0.10 — 2019-12-13
- 0.0.9 — 2019-12-11
- 0.0.8 — 2019-11-08
- 0.0.7 — 2019-11-06
- 0.0.6 — 2019-11-06
- 0.0.5 — 2019-11-05
- 0.0.4 — 2019-11-05
- … 3 more at https://npm.io/package/@oozcitak/url/versions

## README

# URL
A Javascript implementation of the [URL Living Standard](https://url.spec.whatwg.org/).

[![License](http://img.shields.io/npm/l/@oozcitak/url.svg?style=flat-square)](http://opensource.org/licenses/MIT)
[![NPM Version](http://img.shields.io/npm/v/@oozcitak/url.svg?style=flat-square)](https://www.npmjs.com/package/@oozcitak/url)

[![Node.js CI](https://github.com/oozcitak/url/workflows/build/badge.svg)](https://github.com/oozcitak/url/actions)
[![Code Coverage](https://codecov.io/gh/oozcitak/url/branch/master/graph/badge.svg)](https://codecov.io/gh/oozcitak/url)

# Version
Current version implements the standard as of commit [7ae1c69](https://url.spec.whatwg.org/commit-snapshots/7ae1c691c96f0d82fafa24c33aa1e8df9ffbf2bc/).

# Installation
```
npm install @oozcitak/url
```

# Usage
Create an instance of the `URL` or `URLSearchParams` classes.

```js
const { URL } = require("@oozcitak/url");

const url = new URL("https://example.org/file.aspx")
```

---
_Source: https://npm.io/package/@oozcitak/url · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
