Nebula

Build StatusBSD

Nebula is a small library for colored (ANSI) output in Erlang. It's can be useful when you need to create a command-line application.

Installation

Add {nebula, "0.1.1"} to your rebar.config file and run following commands:

➜ ~ make compile

Usage

Just use the following format print(color, "Text").

update_something() ->
  %% ...
  %% ...
  nebula:print(green, "Something has been updated successfully!").