1.0.4 • Published 7 years ago

page-path-builder v1.0.4

Weekly downloads
474
License
WTFPL
Repository
github
Last release
7 years ago

Build Status

For those times when you want to programmatically generate a link to a page.js route.

Usage

var buildPath = require('./')

buildPath('/wat/:huh/yeah', { huh: 'go figure' }) // => '/wat/go%20figure/yeah'

Or parse a path once for more efficient url construction later:

var parsedPath = buildPath('/page/:id')

buildPath(parsedPath, { id: 13 }) // => '/page/13'

buildPath(parsedPath, { id: 1337 }) // => '/page/1337'