GithubHelp home page GithubHelp logo

params-url's Introduction

params-url params-url

Params Url

Serialize params from object to URL.

Install

$ npm i params-url -S

or use CDN:

<script src="https://cdn.jsdelivr.net/npm/params-url@latest/build/urlparams.build.js"></script>

Tests

$ npm test

Usage

const urlParams = require('params-url')

Methods

.add (url, params)

Parameter Type Requried
url string yes
params object yes

Returns a new url with new parameters.

const url = urlParams.add('https://api.com?q=dogs', {
  act: 'find',
  type: [ 'good', 'beautiful' ],
  v: 2
})

console.log(url)
// => https://api.com?q=test&act=create&v=2

.delete (url, params)

Returns a new url without the specified parameters.

Parameter Type Requried
url string yes
params array yes
const url = urlParams.delete('https://api.com?q=dogs&act=find&type=good&type=beautiful', [
  'q',
  'type'
])

console.log(url)
// => https://api.com?v=2

.generate (url, params)

Parameter Type Requried
url string yes
params object yes

Returns a url with parameters.

const url = urlParams.generate('https://api.com/', {
  q: 'dogs',
  act: 'find',
  type: [ 'good', 'beautiful', 'husky' ],
  v: 2
})

console.log(url)
// => https://api.com?foo=bar&q=example%20with%20spaces&arr=1&arr=2&arr=3&v=2

.parse (url)

Parameter Type Requried
url string yes

Returns object of parameters.

const url = urlParams.parse('https://api.com?q=dogs&act=find&type=good&type=beautiful&type=husky&v=2')

console.log(url)
// {
//   q: 'dogs',
//   act: 'find',
//   type: [ 'good', 'beautiful', 'husky' ],
//   v: '2'
// }

License

MIT.

params-url's People

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.