minions alternatives and similar packages
Based on the "Networking" category.
Alternatively, view minions 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

* 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 minions or a related project?
README
Minions
Minions is a fast parallel SSH tool written in haskell. It uses haskell's concurrent channel abstraction to return results quickly and incrementally.
Usage:
minions [-ts] <file with list of hostnames> <ssh command to run>
$ minions list_of_hostnames.txt uname
host1 (0.37s)
Darwin
host2 (1.2s)
Darwin
host3 (1.3s)
Darwin
$
There's also a small mode that prints the results in a compact format:
$ minions -s list_of_hostsnames.txt uname
host1: Darwin
host2: Darwin
host3: Darwin
$
Installation
First install ghc via your system's package manager. On OSX it's as simple as:
brew install haskell-platform
then install minions with:
cabal install minions