snap-web-routes: Type safe URLs for Snap
Type safe URL generation and routing for Snap using web-routes, and builds on work done by Jeremy Shaw.
Get started with the comprehensive tutorial.
Brief overview
It allows you to define a data type that represents the routes in your application:
data AppUrl = Login -- routes to /login | Logout -- routes to /logout | User (Resource UserId) -- provides RESTful routes at /user
Resource
is documented in Snap.Snaplet.Router.REST, and makes defining RESTful routes easier. Also provided are functions to use the URL data type in your app:
someHandler :: Handler App App () someHandler :: doSomething >> redirectURL $ User Index
and to generate URLs in views:
linksHandler :: Handler App App () linksHandler = heistLocal (I.bindSplices linksSplices) $ render "links" where linksSplices = do "loginUrl" ## urlSplice Login
[Skip to Readme]
Modules
[Index]
Downloads
- snap-web-routes-0.5.1.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.1.0.0, 0.2.0.0, 0.3.0.0, 0.3.0.1, 0.4.0.0, 0.5.0.0, 0.5.1.0 |
---|---|
Change log | changelog |
Dependencies | base (>=4.4 && <5), bytestring (>=0.9.1 && <0.11), heist (>=0.13 && <1.20), mtl (>=2 && <3), snap (>=0.13 && <1.1), snap-core (>=0.9 && <1.1), text (>=0.11 && <1.3), web-routes (>=0.27 && <0.28), xmlhtml (>=0.1) [details] |
License | BSD-3-Clause |
Author | Luke Randall |
Maintainer | luke.randall@gmail.com |
Category | Web, Snap |
Home page | https://github.com/lukerandall/snap-web-routes |
Bug tracker | https://github.com/lukerandall/snap-web-routes/issues |
Source repo | head: git clone https://github.com/lukerandall/snap-web-routes.git |
Uploaded | by lukerandall at 2015-08-12T08:43:22Z |
Distributions | |
Reverse Dependencies | 1 direct, 0 indirect [details] |
Downloads | 4846 total (5 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2015-08-12 [all 1 reports] |