Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jroper/play-iteratees-extras
Extra iteratees for Play
https://github.com/jroper/play-iteratees-extras
Last synced: 3 months ago
JSON representation
Extra iteratees for Play
- Host: GitHub
- URL: https://github.com/jroper/play-iteratees-extras
- Owner: jroper
- License: other
- Created: 2012-10-24T09:12:42.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2017-05-09T05:56:10.000Z (over 7 years ago)
- Last Synced: 2024-10-12T16:17:11.464Z (3 months ago)
- Language: Scala
- Homepage:
- Size: 161 KB
- Stars: 78
- Watchers: 15
- Forks: 17
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-playframework - Play Iteratees Extras - Play 2.5 - This is an unofficial library for extra Play iteratees that you may find useful. (Resources for old Play version (before 2.6) / Others)
README
Play Iteratees Extras
=====================This is an unofficial library for extra Play iteratees that you may find useful.
Since it is unofficial, don't expect any support, bug fixes or updates in any sort of timely manner. Also don't expect any sort of backwards compatibility between releases. But do expect to find some iteratees that you may find very useful in your projects.
Currently the library contains the following tools:
* Character encoding enumeratee for decoding streams of byte arrays
* Some useful combinator style iteratees for parsing streams of character arrays
* An error reporting enumeratee for including context to error messages when using combinators
* A full JSON parser, allowing streaming parsing of JSON without writing all the JSON into memory (using a JSON enumeratee parser)To use with Play 2.5, simply add the following library dependency to your build:
```scala
libraryDependencies += "com.typesafe.play.extras" %% "iteratees-extras" % "1.6.0"
```