url-template

A URI template implementation (RFC 6570 compliant)

url-template downloads url-template version url-template license

url-template유사 패키지:
npm 다운로드 트렌드
3 년
🌟 url-template의 README.md에 실시간 사용 차트를 표시하려면 아래 코드를 복사하세요.
## Usage Trend
[![Usage Trend of url-template](https://npm-compare.com/img/npm-trend/THREE_YEARS/url-template.png)](https://npm-compare.com/url-template#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
🌟 url-template의 README.md에 GitHub Stars 트렌드 차트를 표시하려면 아래 코드를 복사하세요.
## GitHub Stars Trend
[![GitHub Stars Trend of url-template](https://npm-compare.com/img/github-trend/url-template.png)](https://npm-compare.com/url-template)
통계 세부사항
패키지
다운로드
Stars
크기
Issues
발행일
라이선스
url-template6,073,6801907.99 kB12年前BSD-3-Clause
url-template의 README

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 or build tools you can install it through npm:

$ npm install url-template

If you want to use it directly in a browser use a CDN like Skypack.

Example

import { parseTemplate } from 'url-template';

const emailUrlTemplate = parseTemplate('/{email}/{folder}/{id}');
const 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.