Work in progress
It's an Elixir library that abstract the HTTP request into functions.
The goal is to facilitate the developers job to integrate with Nubank's API.
This project was inspired by the repo https://github.com/Astrocoders/nubank-api, thanks for Astrocoders for the work in figure out Nubank's API endpoints/payloads etc.
Available in Hex, the package can be installed
by adding :nubank_api to your list of dependencies in mix.exs:
def deps do
[
{:nubank_api, "~> 1.0.0"}
]
endDocumentation can be found at https://hexdocs.pm/nubank_api.
To setup the project, is needed to have Elixir 1.7 or higher installed and run the the command:
$ mix deps.getIn order to keep the quality of the project is important to create tests, format the code and make sure the code style is following the Elixir linter rules.
To run the tests:
$ mix testTo the code formater:
$ mix formatTo run the linter:
$ mix credo --strict