https://github.com/RiverFinancial/nacha
An Elixir library for generating and parsing NACHA files for US ACH & EFT bank transfers
https://github.com/RiverFinancial/nacha
ach eft-bank-transfers elixir-library nacha parsing-nacha-files
Last synced: 12 days ago
JSON representation
An Elixir library for generating and parsing NACHA files for US ACH & EFT bank transfers
- Host: GitHub
- URL: https://github.com/RiverFinancial/nacha
- Owner: RiverFinancial
- License: apache-2.0
- Created: 2017-08-29T18:39:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-09T15:04:09.000Z (about 1 year ago)
- Last Synced: 2024-04-14T11:06:42.041Z (about 1 year ago)
- Topics: ach, eft-bank-transfers, elixir-library, nacha, parsing-nacha-files
- Language: Elixir
- Homepage: https://hex.pm/packages/nacha
- Size: 91.8 KB
- Stars: 14
- Watchers: 7
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-elixir - nacha - Elixir library for generating and parsing NACHA files for US ACH transfers. (Third Party APIs)
- awesome-elixir - nacha - Elixir library for generating and parsing NACHA files for US ACH transfers. (Third Party APIs)
README
# Nacha
An Elixir library for generating and parsing NACHA files for US ACH and
EFT bank transfers.## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `nacha` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:nacha, "~> 0.0.1"}
]
end
```Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at [https://hexdocs.pm/nacha](https://hexdocs.pm/nacha).## Contribute
### Running tests
$ mix test
$ mix test.watch --stale### Linting (Formating + Type Checking)
$ mix lint.all