url-template

WebJar for url-template

Лицензия

Лицензия

BSD
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

url-template
Последняя версия

Последняя версия

2.0.8
Дата

Дата

Тип

Тип

jar
Описание

Описание

url-template
WebJar for url-template
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/bramstein/url-template

Скачать url-template

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/url-template/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>url-template</artifactId>
    <version>2.0.8</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/url-template/
implementation 'org.webjars.npm:url-template:2.0.8'
// https://jarcasting.com/artifacts/org.webjars.npm/url-template/
implementation ("org.webjars.npm:url-template:2.0.8")
'org.webjars.npm:url-template:jar:2.0.8'
<dependency org="org.webjars.npm" name="url-template" rev="2.0.8">
  <artifact name="url-template" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='url-template', version='2.0.8')
)
libraryDependencies += "org.webjars.npm" % "url-template" % "2.0.8"
[org.webjars.npm/url-template "2.0.8"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
2.0.8