snaplet-persistent alternatives and similar packages
Based on the "snaplet" category.
Alternatively, view snaplet-persistent alternatives based on common mentions on social networks and blogs.
-
snaplet-postgresql-simple
postgresql-simple snaplet for the Snap Framework -
snaplet-acid-state
acid-state snaplet for Snap Framework -
snaplet-actionlog
Create a change log/history for records in your snap application -
snaplet-sqlite-simple
sqlite-simple snaplet for the Snap Framework -
snaplet-mysql-simple
A haskell snaplet for using MariaDB and MySQL database with a Snap Framework application via mysql-simple -
snaplet-stripe
Haskell Snap Framework support for Stripe -
snaplet-auth-acid
An AcidState backend for Snap's Auth Snaplet -
snaplet-sass
Sass integration for Snap with request- and pre-compilation. -
snaplet-postmark
Haskell Snap Framework support for Postmark email system. -
snaplet-coffee
A Haskell Snaplet based off of snaplet-fay, but for coffeescript -
snaplet-haxl
Snaplet for Haxl: https://github.com/facebook/Haxl
Static code analysis for 29 languages.
Do you think we are missing an alternative of snaplet-persistent or a related project?
README
This package makes it easier to integrate your snap applications with databases using persistent. It also includes a backend for the auth snaplet defining how users should be stored in your database.
Adding the snaplet to your application is simply a matter of adding the snaplet to your application’s state data type and initializing it appropriately in your application initializer. After you do this, when you run your application for the first time, the snaplet will automatically install a default configuration file that looks like this.
postgre-con-str = "host='localhost' dbname='snap-test' user='guest' password='password1'" postgre-pool-size = 3
Then you can edit this file as you see fit. The auth backend works similarly with its own set of config options.