This is a javascript implementation of RFC6570 - URI Template, and can expand templates up to and including Level 4 in that specification.
It exposes a constructor function UriTemplate with the two methods:
Be aware, that a parsed UriTemplate is frozen, so it is stateless. You can reuse instances of UriTemplates.
You can use uritemplate.js in any even not so modern browser (Tested even with IE8 in IE7-Mode), see file demo.html. But you can also use it with node:
npm install uritemplate
and then in a node application:
var
UriTemplate = require('uritemplate'),
template;
template = UriTemplate.parse('{?query*})';
template.expand({query: {first: 1, second: 2}});
--> "?first=1&second=2"
or within a html document (see also demo.html):
<script type="text/javascript" src="https://github.com/fxa/uritemplate-js/raw/master/bin/uritemplate.js"></script>
<script type="text/javascript">
var template = UriTemplate.parse('{?query*}');
alert(template.expand({query: {first: 1, second: 2}}));
</script>
If you want to clone the git project, be aware of the submodule uritemplate-test. So you have to to:
git clone --recursive https://github.com/fxa/uritemplate-js.git
npm install
npm test
The integration tests are taken from https://github.com/uri-templates/uritemplate-test as a submodule. The tests are integrated in the Jakefile.
Copyright 2013 Franz Antesberger
MIT License, see http://mit-license.org/