parse-url-query-params

0.0.8 • Public • Published

GitHub license npm version Open Source

get window / viewPort width / height

`react-window-dimensions-hook` will helps to get window / viewPort width or window / viewPort height . Install
npm i parse-url-query-params -S

Usage

Example 1

Just import the parseQueryParameters component from parse-url-query-params

  import parseQueryParameters from 'parse-url-query-params';

  const prsedUrl = parseQueryParameters('http://localhost:3000/offers?offerID=1231sfwf21&local=FR');
  console.log(prsedUrl)

OutPut ::

   {
      "offerID":"1231sfwf21",
      "local":"FR"
    }

Example 2

In destrction way... Just import the parseQueryParameters component from parse-url-query-params

  import parseQueryParameters from 'parse-url-query-params';

  const { offerID, local } = parseQueryParameters('http://localhost:3000/offers?offerID=1231sfwf21&local=FR');
                
    console.log('offerID');

    console.log(offerID);

    console.log('local');

    console.log(local);

OutPut ::

   offerID

    "1231sfwf21"

    local

    "FR"

or visit https://dvyogesh.github.io/lerna-starter/?path=/ story/design-system-parsequeryparameters--parse-query-parameters

supports Universal Testing Pattern

LICENSE

MIT

Package Sidebar

Install

npm i parse-url-query-params

Weekly Downloads

527

Version

0.0.8

License

none

Unpacked Size

4.08 kB

Total Files

4

Last publish

Collaborators

  • dv_yogesh