Socket
Socket
Sign inDemoInstall

temple

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    temple

A URI Template processor


Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Install size
44.6 kB
Created
Weekly downloads
 

Changelog

Source

0.0.3 (2013-01-19)

  • Update devDependencies.
  • Re-build parser and browser bundle.

Readme

Source

Temple

A URI Template processor.

http://brett.stimmerman.com/temple

Build Status

Installation

npm install temple

To use Temple in the browser, download a client-side release and include it in your site.

Usage

var Temple = require('temple');
Temple.expand('/search{?q,page}', {q: 'uri templates', page: 1});
//=> /search?q=uri%20templates&page=1
<script src="temple-min.js"></script>
<script>
Temple.expand('{/path}', {path: ['user', 'edit', 6346]});
//=> /user/edit/6346
</script>

Re-usable Templates

var tmpl = Temple.compile('/users/show{.format}{?user_id,screen_name}');

tmpl({format: 'json', screen_name: 'bretts'});
//=> /users/show.json?screen_name=bretts

tmpl({format: 'xml', user_id: '15459720'});
//=> /users/show.xml?user_id=15459720

Keywords

FAQs

Last updated on 19 Jan 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc