url-template

A JavaScript URI template implementation (RFC 6570 compliant)

  • 所有者: bramstein/url-template
  • 平台:
  • 許可證: BSD 3-Clause "New" or "Revised" License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

A JavaScript URI template implementation

This is a simple URI template implementation following the RFC 6570 URI Template specification. The implementation supports all levels defined in the specification and is extensively tested.

Installation

For use with Node.js you can install it through npm:

$ npm install url-template

If you want to use it in a browser, copy lib/url-template.js into your project and use the global urltemplate instance. Alternatively you can use Bower to install this package:

$ bower install url-template

Example

var template = require('url-template');

var emailUrlTemplate = template.parse('/{email}/{folder}/{id}');
var emailUrl = emailUrlTemplate.expand({
  email: 'user@domain',
  folder: 'test',
  id: 42
});

console.log(emailUrl);
// Returns '/user@domain/test/42'

A note on error handling and reporting

The RFC states that errors in the templates could optionally be handled and reported to the user. This implementation takes a slightly different approach in that it tries to do a best effort template expansion and leaves erroneous expressions in the returned URI instead of throwing errors. So for example, the incorrect expression {unclosed will return {unclosed as output. The leaves incorrect URLs to be handled by your URL library of choice.

主要指標

概覽
名稱與所有者bramstein/url-template
主編程語言JavaScript
編程語言JavaScript (語言數: 1)
平台
許可證BSD 3-Clause "New" or "Revised" License
所有者活动
創建於2012-10-23 21:05:13
推送於2024-02-01 11:30:30
最后一次提交
發布數14
最新版本名稱v3.1.1 (發布於 2023-12-13 18:35:49)
第一版名稱v1.0.0 (發布於 )
用户参与
星數184
關注者數4
派生數35
提交數115
已啟用問題?
問題數22
打開的問題數1
拉請求數49
打開的拉請求數0
關閉的拉請求數8
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?