Popularity
4.1
Stable
Activity
0.0
Stable
5
3
2
Monthly Downloads: 3
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
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* 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?
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