Popularity
6.0
Stable
Activity
3.2
Stable
68
4
18
Monthly Downloads: 42
Programming language: Erlang
License: MIT License
Tags:
Build Tools
Latest version: v6.1
active alternatives and similar packages
Based on the "Build Tools" category.
Alternatively, view active alternatives based on common mentions on social networks and blogs.
-
ExMake
DISCONTINUED. A modern, scriptable, dependency-based build tool loosely based on Make principles.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of active or a related project?
README
ACTIVE: Continuous Compilation
Active is a sync replacement
that uses native file-system OS async listeners to compile and
reload Erlang files, DTL templates and other files. It acts as
FS subscriber under supervision and uses
mad,
IEx.Helpers.c
or you can add your own compiler, like rebar3
or make
.
Listen Folders
One-level
app(App,["ebin",Module|_]) -> load_ebin(App,Module);
app(App,["priv"|_]) -> compile(App);
app(App,["src"|_]) -> compile(App);
app(_,_)-> ok.
Two-level
otp(["deps",App|Rest]) -> app(App,Rest);
otp(["apps",App|Rest]) -> app(App,Rest);
otp([Some|Path]) -> app(top(),[Some|Path]);
otp(_) -> ok.
Usage
On Mac/Linux/Windows just include into your rebar.config:
{active, ".*", {git, "git://github.com/synrc/active", {tag,"1.9"}}}
NOTE: on Linux please install inotify-tools.
Credits
- Maxim Sokhatsky
- Vladimir Kirillov
- Oleksandr Palchikovsky (Elixir)
OM A HUM