0.0.6 • Published 2 years ago
parsewe-url v0.0.6
parsewe-url
A simple url parser.
Installation
NPM:
npm install parwese-urlYarn:
yarn add parwese-urlUsage
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'}