Current section
Files
Jump to
Current section
Files
README.md
Promise implementation in Elixir.
[](https://hex.pm/packages/promise) [](https://hexdocs.pm/promise) [](https://hex.pm/packages/promise) [](https://github.com/ertgl/promise) [](LICENSE.txt)
---
</br>
**`Installation`**
The package is [available in Hex](https://hex.pm/packages/promise), it can be installed
by adding `:promise` to your list of dependencies in `mix.exs`:
```elixir
def application() do
[
extra_applications: [
:promise,
],
]
end
def deps() do
[
{:promise, "~> 0.1.0"},
]
end
```
</br>