# normalizeurl

> Normalize a url or url fragment by percent-encoding exactly the chars encodeURIComponent does

Latest version **1.0.0** (published 2016-08-19) · BSD license · 0 weekly downloads

## Install

```sh
npm install normalizeurl
pnpm add normalizeurl
yarn add normalizeurl
bun add normalizeurl
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-08-19 |
| First published | 2013-10-01 |
| Weekly downloads | 0 |
| License | BSD |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Andreas Lind Petersen |
| Maintainers | papandreou |
| Keywords | url, normalize, normalization, percent, encoding, href |

## Links

- npm: https://www.npmjs.com/package/normalizeurl
- npm.io page: https://npm.io/package/normalizeurl

## 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

- 1.0.0 (latest) — 2016-08-19
- 0.1.3 — 2014-06-24
- 0.1.2 — 2014-02-11
- 0.1.1 — 2013-10-01
- 0.1.0 — 2013-10-01

## README

# normalizeurl

Normalize a url or url fragment by percent-encoding exactly the chars
encodeURIComponent does and removing `/./` and `/foo/../` constructs
like `require('path').resolve` does.

Example:

```javascript
var normalizeUrl = require('normalizeurl');

console.log(normalizeUrl('http://example.com/%7efoo%2Ebar'));
// => 'http://example.com/~foo.bar'

console.log(normalizeUrl('http://example.com/foo/./bar/quux/../blah'));
// => 'http://example.com/foo/bar/blah'
```

It also does the right thing for relative, root-relative, and protocol-relative urls:
```javascript
console.log(normalizeUrl('foo/bar/../blah'));
// => 'foo/bar/blah'

console.log(normalizeUrl('/hey/there/../you?blah?#foo%7e'));
// => '/hey/you?blah?#foo~'

console.log(normalizeUrl('//example.com/%7efoo'));
// => '//example.com/~foo'
```

Url objects already parsed by node.js' built-in `url` module are also supported:

```javascript
console.log(normalizeUrl(require('url').parse('htTP://foo.com/%7ebarf')));
// => {protocol: 'http:', slashes: true, host: 'foo.com', hostname: 'foo.com', pathname: '/~barf', href: 'http://foo.com/~barf', path: '/~barf'}
```

The module works also works in a browser, but only for url fragments
for now. It'll throw an exception if you attempt to normalize an
absolute or protocol-relative url, as that currently relies on
`require('url').parse`.

## License

normalizeurl is licensed under a standard 3-clause BSD license -- see the `LICENSE`-file for details.

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