@libj/make-uri
v1.3.12
Published
Uri builder
Downloads
59,171
Readme
Rationale
A utility function to build a valid URI.
Features
- RFC-3986 compliant
- clean API
- base uri support
- validation
- battery of unit tests applied
makeUri()
API
Import
const { makeUri } = require('@libj/make-uri');
Parameters
Name | Type | Example
-----|------|--------
scheme | string
| makeUri({ scheme: 'http:' })
authority | string
| makeUri({ authority: '[email protected]:333' })
authority | {host: string, user?: string, port?: number }
| makeUri({ authority: { host: 'some.com', user: 'user', port: 333 } })
path | string
| makeUri({ path: '/foo/bar' })
path | { template: string, params: Object }
| makeUri({ path: { template: '/foo/:bar', params: { bar: 'my-bar' } } })
path | string[]
| makeUri({ path: ['foo', 'bar'] })
=> /foo/bar
query | Object
| makeUri({ query: { foo: 'bar' } })
=> foo=bar
query | { $data: Object, $options: { encode: boolean } }
| makeUri({ query: { $data: { foo: 'bar' }, $options: { encode: true } } })
query | { $data: Object, $options: { encode: { include: string[] } } }
| makeUri({ query: { $data: { foo: 'bar' }, $options: { encode: { include: ['foo'] } } } })
query | { $data: Object, $options: { encode: { exclude: string[] } } }
| makeUri({ query: { $data: { foo: 'bar' }, $options: { exclude: { include: ['foo'] } } } })
fragment | Object
| makeUri({ path: '/foo', fragment: { foxy: 'lady' } })
=> /foo#foxy=lady
fragment | See query $data
with $options
above |
Base uri
Basic usage
makeUri('http://some.host/path', { query: { foo: 'bar' } })
// => http://some.host/path?foo=bar
Append path
makeUri('https://host.com/foo', { path: '/bar' })
// => https://host.com/foo/bar