Popularity
3.8
Growing
Activity
0.0
Stable
5
1
2
Monthly Downloads: 10
Programming language: Haskell
License: MIT License
Tags:
Network
Latest version: v0.1.0
kraken alternatives and similar packages
Based on the "Networking" category.
Alternatively, view kraken alternatives based on common mentions on social networks and blogs.
-
call-haskell-from-anything
Call Haskell functions from any programming language via serialization and dynamic libraries -
PortFusion
Haskell-powered cross-platform transport-layer distributed reverse / forward proxy & tunneling solution – currently available for all TCP protocols (RDP, VNC, HTTP(S), SSH, ...). -
ngx-export
A comprehensive web framework aimed at building custom Haskell handlers for the Nginx Web Server
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
* 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 kraken or a related project?
Popular Comparisons
README
Haskell API client library for the Kraken.io image compressor
import Data.ByteString as BS
import Network.Kraken
main :: IO ()
main = do
let config = Config "<api key>" "<api secret>"
h <- newHandle config
img <- BS.readFile "image.png"
let opt = Options (Just $ Lossy 80) (Just $ Crop 200 200) Nothing
res <- compressImage h opt img
case res of
Left e -> error $ show e
Right compressedImage -> do
BS.writeFile "smaller-image.png" compressedImage