Popularity
5.3
Growing
Activity
0.0
Stable
62
5
3
Programming language: Elixir
Tags:
Utilities
Latest version: v0.1.0
dress alternatives and similar packages
Based on the "Utilities" category.
Alternatively, view dress alternatives based on common mentions on social networks and blogs.
-
retry
Simple Elixir macros for linear retry, exponential backoff and wait with composable delays -
erlware_commons
Erlware Commons is an Erlware project focused on all aspects of reusable Erlang components. -
async_with
The asynchronous version of Elixir's "with", resolving the dependency graph and executing the clauses in the most performant way possible! -
plasm
Ecto's composable query multitool (.count, .random, .earliest, .latest, .find, .at, .on, etc.) -
sips_downloader
Utility to download Elixir Sips screencast videos written in Elixir (subscription to Elixir Sips required) -
ar2ecto
Migrate your active record migrations to ecto compatible migrations -
fitex
FitEx is a Macro-Module which provides a bit of sugar for function definitions. -
exjprop
Elixir library for reading Java properties files from various sources. -
ex_progress
A library for tracking progress across many tasks and sub-tasks
TestGPT | Generating meaningful tests for busy devs
Get non-trivial tests (and trivial, too!) suggested right inside your IDE, so you can code smart, create more value, and stay confident when you push.
Promo
codium.ai
Do you think we are missing an alternative of dress or a related project?
Popular Comparisons
README
Dress 
Cli app that makes your stdout fancy.
For now you need to create your own configuration file using this example.
Installation
Via brew
:
$ brew tap veelenga/tap
$ brew install dress
Manually:
$ git clone https://github.com/veelenga/dress && cd dress/
$ mix deps.get
$ mix escript.build
$ ./dress
Usage
$ tail -f log/development.log | dress -c config/default.yml
Config file
Your configuration file must be placed to ~/.dress/
folder and follow yaml format:
# ~/.dress/jacket.yml
dress:
# colorize dates in yellow color
dates:
regex: '\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}'
color: :yellow
# format urls, so those will have blue color and be underlined
urls:
regex: '(https?:\/\/(?:www\.|(?!www))[^\s\.]+\.[^\s]{2,}|www\.[^\s]+\.[^\s]{2,})'
format: [:blue, :underline]
# improve time format
time:
regex: '(\d\d):(\d\d):(\d\d)'
replace: '\1h\2m\3s'
# skip some useless lines
trash:
regex: 'line containing this will not be shown'
skip: true
And you can use it in the following way:
$ tail -f log/development.log | dress jacket
Be smart, automate routine stuff !