0.2.1 • Published 4 years ago

url-append v0.2.1

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

NPM version url-append Dependency Status

Append (additional) URL-Params to a given url

Install

$ npm install --save url-append

Usage

With an Object

var urlAppend = require('url-append');

urlAppend('http://www.example.com?param1=value1', {param2: 'value2', param3: 'value3'});
// results in http://www.example.com?param1=value1&param2=value2&param3=value3

With a Querystring

var urlAppend = require('url-append');

urlAppend('http://www.example.com?param1=param2', 'param2=value2&param3=value3');
// results in http://www.example.com?param1=value1&param2=value2&param3=value3

Release History

  • 0.1.0 Initial Release

Contributors

  • Bastian "hereandnow" Behrens

License

Copyright (c) 2015 Valiton GmbH Licensed under the MIT license.

0.2.1

4 years ago

0.2.0

4 years ago

0.1.0

9 years ago

0.0.0

9 years ago