Skip to content

erlangsters/reactor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reactor Behavior (aka 'gen_statem')

A re-implementation of the gen_statem behavior (from the OTP framework) for the OTPless distribution of Erlang, named reactor.

🚧 It's a work-in-progress, use at your own risk.

Written by the Erlangsters community and released under the MIT license.

Getting started

XXX: To be written.

Using it in your project

With the Rebar3 build system, add the following to the rebar.config file of your project.

{deps, [
  {reactor, {git, "https://github.com/erlangsters/reactor.git", {tag, "master"}}}
]}.

If you happen to use the Erlang.mk build system, then add the following to your Makefile.

BUILD_DEPS = reactor
dep_reactor = git https://github.com/erlangsters/reactor master

In practice, you want to replace the branch "master" with a specific "tag" to avoid breaking your project if incompatible changes are made.

About

The re-implemented 'gen_statem' behavior for OTPless Erlang.

Resources

License

Stars

Watchers

Forks