Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tfausak/burrito
:burrito: Parse and render URI templates.
https://github.com/tfausak/burrito
haskell
Last synced: 8 days ago
JSON representation
:burrito: Parse and render URI templates.
- Host: GitHub
- URL: https://github.com/tfausak/burrito
- Owner: tfausak
- License: mit
- Created: 2020-04-04T11:35:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-02T02:01:11.000Z (about 1 month ago)
- Last Synced: 2024-10-12T22:19:47.304Z (24 days ago)
- Topics: haskell
- Language: Haskell
- Homepage: https://hackage.haskell.org/package/burrito
- Size: 223 KB
- Stars: 16
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Burrito
[![CI](https://github.com/tfausak/burrito/actions/workflows/ci.yml/badge.svg)](https://github.com/tfausak/burrito/actions/workflows/ci.yml)
[![Hackage](https://badgen.net/hackage/v/burrito)](https://hackage.haskell.org/package/burrito)Burrito is a Haskell library for parsing and rendering URI templates.
According to [RFC 6570](https://tools.ietf.org/html/rfc6570): "A URI Template
is a compact sequence of characters for describing a range of Uniform Resource
Identifiers through variable expansion." Burrito implements URI templates
according to the specification in that RFC.The term "uniform resource identifiers" (URI) is often used interchangeably
with other related terms like "internationalized resource identifier" (IRI),
"uniform resource locator" (URL), and "uniform resource name" (URN). Burrito
can be used for all of these. If you want to get technical, its input must be a
valid IRI and its output will be a valid URI or URN.Although Burrito is primarily intended to be used with HTTP and HTTPS URIs, it
should work with other schemes as well.