uri-template-w-unescaped

0.0.1 • Public • Published

URI Template

Build Status

This is a node.js implementation of the URI template draft standard defined at http://tools.ietf.org/html/rfc6570

Example

 
parser = require('uri-template')
 
tpl = parser.parse('/{year}/{month}/{day}{?orderBy,direction}')
 
tpl.expand({ year: 2006, month: 6, day: 6 }) # /2006/6/6
tpl.expand({ year: 2006, month: 6, day: 6, orderBy: 'size' })
/2006/6/6?orderBy=size
tpl.expand({ year: 2006, month: 6, day: 6, orderBy: 'time', direction: 'asc' })
/2006/6/6?orderBy=time&direction=asc
 
tpl = parser.parse('/search{?q,*otherParams}')
tpl.expand({ q: 'Bigger office', otherParams: { prefer: "Sterling's office", accept: "Crane's office" }})
/search?q=Bigger%20office&prefer=Sterling%27s%20office&accept=Crane%27s%20office

For more thorough coverage of the syntax, see test.js or the RFC.

Readme

Keywords

none

Package Sidebar

Install

npm i uri-template-w-unescaped

Weekly Downloads

0

Version

0.0.1

License

none

Last publish

Collaborators

  • jzetlen