Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

url-composer

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

url-composer

Building dynamic URLs

  • 1.15.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
47
decreased by-28.79%
Maintainers
1
Weekly downloads
 
Created
Source

url-composer

JavaScript Style Guide Build Status bitHound Overall Score npm

Small lib for parsing and building dynamic URLs

Install

You can install the lib via npm

npm install --save url-composer

or bower

bower install --save url-composer

Usage

The library is very simple to use

import url from 'url-composer'

url.build({
  host: 'https://github.com',
  path: '/:username',
  params: { username: 'RasCarlito' },
  query: { tab: 'repositories' },
  hash: 'your-repos-filter'
})
// "https://github.com/RasCarlito?tab=repositories#your-repos-filter"

Everything is optional. So calling url.build() without any parameters would just generate an empty String.

Note: Path and query parameters are encoded using encodeURIComponent

Path options

The path option has an advanced syntax to handle injection of parameters.

Named parameters

Like in the first example

import url from 'url-composer'

url.build({
  path: '/users/:id',
  params: { id: 42 }
})
// "/users/42"

Optional parameters

With optional parameters you can make a portion of the path optional using parentheses. Depending on the params passed that portion will be included or left out.

import url from 'url-composer'

const path = '/users/:id(/edit/:section)'

url.build({
  path,
  params: { id: 42 }
})
// "/users/42"

url.build({
  path,
  params: { id: 42, section: 'profile' }
})
// "/users/42/edit/profile"

Testing a path

You can test a path to validate that it corresponds to a given schema

import url from 'url-composer'

const path = '/users/:id(/edit/:section)'

// Testing path directly
url.test({ path, url: '/users/42' }) // true
url.test({ path, url: '/something/different' }) // false

// Getting the regex instead
const re = url.regex(path)

re.test('/users/42/edit/profile') // true

Parsing a path

You can parse a path to extract the dynamic parts into an Array or an Object.

It will also extract the search query if it is present and place it as the last item in the resulting Array or in a query key in the resulting Object.

Missing optional parameters will result to null in the extracted values.

Lets look at some code to actually see how it works:

import url from 'url-composer'

// Parsing dynamic parts into an Array
url.parse({
  path: '/users/42/edit/profile',
  definition: '/users/:id(/edit/:section)'
})
// ['42', 'profile', null]

// Parsing dynamic parts into an Object
url.parse({
  path: '/users/42/edit/profile',
  definition: '/users/:id(/edit/:section)',
  object: true
})
// { id: '42', section: 'profile', query: null }

// Parsing a path with a search query
url.parse({
  path: '/users/42/edit/profile?expand=true',
  definition: '/users/:id(/edit/:section)'
})
// ['42', 'profile', 'expand=true']

// Parsing dynamic parts into an Object
url.parse({
  path: '/users/42/edit/profile?expand=true',
  definition: '/users/:id(/edit/:section)',
  object: true
})
// { id: '42', section: 'profile', query: 'expand=true' }

License

MIT

Keywords

FAQs

Package last updated on 06 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc