hairy alternatives and similar packages
Based on the "Web" category.
Alternatively, view hairy alternatives based on common mentions on social networks and blogs.
-
haskell-bitmex-rest
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
servant
Main repository for the servant libraries — DSL for describing, serving, querying, mocking, documenting web applications and more! -
swagger-petstore
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
scotty
Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp (Official Repository) -
neuron
Future-proof note-taking and publishing based on Zettelkasten (superseded by Emanote: https://github.com/srid/emanote) -
airship
Helium + Webmachine = Airship. A toolkit for building declarative, RESTful web apps. -
apecs-gloss
a fast, extensible, type driven Haskell ECS framework for games -
haskell-kubernetes
Haskell bindings to the Kubernetes API (via swagger-codegen) -
digestive-functors
A general way to consume input using applicative functors -
tagsoup
Haskell library for parsing and extracting information from (possibly malformed) HTML/XML documents -
kubernetes-client-core
Haskell client for the kubernetes API. A work in progress. -
keera-hails-reactive-htmldom
Keera Hails: Haskell on Rails - Reactive Programming Framework for Interactive Haskell applications -
engine-io
A Haskell server implementation of the Engine.IO and Socket.IO (1.0) protocols -
backprop
Heterogeneous automatic differentiation ("backpropagation") in Haskell -
servant-elm
Automatically derive Elm functions to query servant webservices -
ghcjs-dom
Make Document Object Model (DOM) apps that run in any browser and natively using WebKitGtk
Less time debugging, more time building
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of hairy or a related project?
README
Hairy
Hairy is a JSON REST API built in Haskell. It uses Scotty to create a WAI application served by the Warp web server. The Aeson library handles encoding and decoding JSON, while Persistent manages the PostgreSQL database. Hairy features an Hspec test suite and Criterion benchmarks.
The entire project is meant to be easy to build, understand, and use. It doesn't really do anything useful, but it shows how to do anything at all. Take a look at [the literate source][8] to see how it all works.
Requirements
Hairy works best with the latest Haskell Platform, but it also supports GHC 7.8 and 7.6. PostgreSQL 9.1 or later is also required.
Installation
Add it to your Cabal file:
library
build-depends:
hairy ==0.1.*
Or install it manually:
$ cabal update
$ cabal install hairy-0.1.3
This package uses Semantic Versioning.
Setup
First create a database user for Hairy.
$ createuser --createdb postgres
Then create databases for each environment.
$ psql --username postgres --command 'CREATE DATABASE hairy_development'
$ psql --username postgres --command 'CREATE DATABASE hairy_production'
$ psql --username postgres --command 'CREATE DATABASE hairy_test'
Then just start the server!
$ hairy
# => http://localhost:3000
Configuration
Hairy can be configured through environment variables.
To configure the environment, use the SCOTTY_ENV
environment variable.
Possible environments include Development
, Production
, and Test
.
$ env SCOTTY_ENV=Production hairy
To configure the port, use the PORT
environment variable.
$ env PORT=8080 hairy
To configure the database, use the DATABASE_URL
environment variable.
$ env DATABASE_URL=postgres://postgres:[email protected]:5432/hairy_development hairy