seturlparameter

1.2.0 • Public • Published

setUrlParameter

Installation

npm install seturlparameter

Usage

const setUrlParameter = require('seturlparameter');

const url = 'https://www.example.com/index.html?aaa=bbb&ccc=ddd';
let key = 'eee';
const value = 'fff';

const urlWithNewParam = setUrlParameter(url, key, value);

console.log(urlWithNewParam); // result is: 'https://www.example.com/index.html?aaa=bbb&ccc=ddd&eee=fff'

key = 'aaa';
const urlWithReplacedParam = setUrlParameter(url, key, value);

console.log(urlWithReplacedParam); // result is: 'https://www.example.com/index.html?aaa=fff&ccc=ddd'

Information

Based on the idee from: https://blog.bitscry.com/2018/08/17/getting-and-setting-url-parameters-with-javascript/

Dependents (0)

Package Sidebar

Install

npm i seturlparameter

Weekly Downloads

1

Version

1.2.0

License

MIT

Unpacked Size

108 kB

Total Files

7

Last publish

Collaborators

  • raphaelh