npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

url-assembler

v2.1.1

Published

Assemble urls from route-like templates (/path/:param)

Downloads

10,793

Readme

Build Status Coverage

node-url-assembler

Assemble urls from route-like templates (/path/:param)

Chainable utility to assemble URLs from templates

Installation

npm install --save url-assembler

Usage

Basic

UrlAssembler()
  .template('/users/:user')
  .param('user', 8)
  .param('include', 'address')
  .query({
    some: 'thing',
    other: 1234
  })
  .toString() // => "/users/8?include=address&some=thing&other=1234

With base URL

Since you more often than not need a hostname and a protocol to go with this

UrlAssembler('http://my.domain.com:9000')
  .template('/groups/:group/users/:user')
  .param({
    group: 'admin',
    user: 'floby'
  })
  .toString() // => "http://my.domain.9000/groups/admin/users/floby"

Incremental assembling

You can also incrementally build your URL.

UrlAssembler('https://api.site.com/')
  .prefix('/v2')
  .segment('/users/:user')
  .segment('/projects/:project')
  .segment('/summary')
  .param({
    user: 'floby',
    project: 'node-url-assembler'
  })
  .toString() // => 'https://api.site.com/v2/users/floby/projects/node-url-assembler/summary'

making requests

If url-assembler finds the request module. Then a .request property is available on every instance which can be used to make requests.

var google = UrlAssembler('https://google.com').query('q', 'url assembler');

google.request.get() // => makes a GET request to google

// you can still pass any other option to request
google.request.get({json: true})

Design

Every method (except toString()) returns a new instance of UrlAssembler. You can consider that UrlAssembler instances are immutable.

Because of this, you can use a single instance as a preconfigured url to reuse throughout your codebase.

var api = UrlAssembler('http://api.site.com');

var userResource = api.segment('/users/:user');

var userV1 = userResource.prefix('/v1');
var userV2 = userResource.prefix('/v2');

var userFeedResource = userV2.segment('/feed');

var authenticated = api.query('auth_token', '123457890');

var adminResource = authenticated.segment('/admin');

In addition, an instance of UrlAssembler is a valid object to pass to url.format() or any function accepting this kind of object as parameter.

API Reference

new UrlAssembler([baseUrl])
  • baseUrl: will be used for protocol, hostname, port and other base url kind of stuff.
  • returns an instance of a URL assembler.
new UrlAssembler(urlAssembler)
  • urlAssembler: an existing instance of UrlAssembler
  • this constructor is used for chaining internally. You should be aware of it if you extend UrlAssembler
  • returns a new instance of a URL assembler, copying the previous one
.template(template)
  • template a string with dynamic part noted as :myparam . For example '/hello/:param/world'
  • returns a new instance of UrlAssembler with this template configured
.prefix(subPath)
  • subPath : this string will be added at the beginning of the path part of the URL
  • if called several times, the subPath will be added after the previous prefix but before the rest of the path
  • returns a new instance of UrlAssembler
.segment(subPathTemplate)
  • subPathTemplate is a string of a segment to add to the path of the URL. It can have a templatized parameter eg. '/user/:user'
  • if called several times, the segment will be added at the end of the URL.
  • returns a new instance of UrlAssembler
.param(key, value[, strict])
  • key: a string of the dynamic part to replace
  • value: a string to replace the dynamic part with
  • returns a new instance of UrlAssembler with the parameter key replaced with value. If strict is falsy, the key will be added as query parameter.
.param(params[, strict])
  • params: a hash of key/value to give to the method above
  • strict a flag passed to the method above
  • returns a new instance of UrlAssembler with all the parameters from the params replaced
.query(key, value)
  • key: the name of the parameter to configure
  • value: the value of the parameter to configure
  • returns a new instance of UrlAssembler with the key=value pair added as query parameter with the qs module.
.query(params)
  • shortcut for the previous method with a hash of key/value.
.qsConfig(config)
  • add config supported by qs.stringify https://www.npmjs.com/package/qs version ^6.5.1
.toString(), .valueOf(), toJSON()
  • returns a string of the current state of the UrlAssembler instance. Path parameters not yet replaced will appear as :param_name.

Test

Tests are written with mocha and covered with istanbul You can run the tests with npm test.

Contributing

Anyone is welcome to submit issues and pull requests

License

MIT

Copyright (c) 2015 Florent Jaby

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.