@nodifier/url-parser
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

@nodifier/url-parser

A node module to parse url string into object of url components

How to use?

import { parseUrl } from "@nodify/url-parser";

const urlComponents = parseUrl("https://mytestdomain.com/sample/read?book=1");

Output

{
  "host": "mytestdomain.com",
  "protocol": "https",
  "path": "/sample/read",
  "queryString": "book"
}

Return Types

host: string;
path: string;
port: string;
protocol: string;
username: string;
password: string;

Package Sidebar

Install

npm i @nodifier/url-parser

Weekly Downloads

2

Version

1.0.3

License

ISC

Unpacked Size

70.7 kB

Total Files

19

Last publish

Collaborators

  • gamemasterdev