npm.io
0.0.6 • Published 2 years ago

parsewe-url

Licence
MIT
Version
0.0.6
Deps
0
Size
3 kB
Vulns
0
Weekly
0

parsewe-url

A simple url parser.

Installation

NPM:

npm install parwese-url

Yarn:

yarn add parwese-url

Usage

Import the package.

import parseUrl from 'parsewe-url';

The queries extracted after the ?, split at the &, and query values are extracted after the =.

Example:

// url: 'https://localhost:9000/profile?fields=media,id,profile_photo&auth_token=35Df&8g_W4&redirect=/nextpage' 

queries = parseUrl(); 
console.log(queries); 
// {fields: 'media,id,profile_photo', auth_token: '35Df&8g_W4', redirect: '/nextpage'}