Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christopherdavenport/dynamapath
Dynamic Path Parsing
https://github.com/christopherdavenport/dynamapath
Last synced: 19 days ago
JSON representation
Dynamic Path Parsing
- Host: GitHub
- URL: https://github.com/christopherdavenport/dynamapath
- Owner: ChristopherDavenport
- License: mit
- Created: 2019-05-08T22:52:02.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T22:17:28.000Z (over 2 years ago)
- Last Synced: 2024-10-09T08:21:31.004Z (about 1 month ago)
- Language: Scala
- Homepage: https://christopherdavenport.github.io/dynamapath
- Size: 846 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# dynamapath - Dynamic Path Parsing [![Build Status](https://travis-ci.com/ChristopherDavenport/dynamapath.svg?branch=master)](https://travis-ci.com/ChristopherDavenport/dynamapath) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.chrisdavenport/dynamapath_2.12/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.chrisdavenport/dynamapath_2.12)
## [Head on over to the microsite](https://ChristopherDavenport.github.io/dynamapath)
## Quick Start
To use dynamapath in an existing SBT project with Scala 2.11 or a later version, add the following dependencies to your
`build.sbt` depending on your needs:```scala
libraryDependencies ++= Seq(
"io.chrisdavenport" %% "dynamapath" % ""
)
```## Credits
Inspiration for this library was drawn from [path-to-regexp](https://github.com/pillarjs/path-to-regexp),
[Brandon Ros](https://github.com/brandonros) initially made me aware of the concept,
and I thought it was intriguing enough to merit translation.