https://github.com/oozcitak/url
An implementation of the URL Living Standard
https://github.com/oozcitak/url
Last synced: 6 months ago
JSON representation
An implementation of the URL Living Standard
- Host: GitHub
- URL: https://github.com/oozcitak/url
- Owner: oozcitak
- License: mit
- Created: 2019-10-04T08:54:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T16:20:51.000Z (almost 3 years ago)
- Last Synced: 2024-10-29T18:49:49.132Z (11 months ago)
- Language: TypeScript
- Size: 698 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# URL
A Javascript implementation of the [URL Living Standard](https://url.spec.whatwg.org/).[](http://opensource.org/licenses/MIT)
[](https://www.npmjs.com/package/@oozcitak/url)[](http://travis-ci.org/oozcitak/url)
[](https://ci.appveyor.com/project/oozcitak/url)
[](https://david-dm.org/oozcitak/url)
[](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")
```