Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 845 Bytes

readme.md

File metadata and controls

30 lines (26 loc) · 845 Bytes

OpenACH

coverage

This is a very simple ACH parser. The spec used can be found here: https://www.nacha.org/system/files/resources/AAP201%20-%20ACH%20File%20Formatting.pdf

Installing

Run command:

npm install
npm run deploy

These commands will install the dependencies, run the unit tests, deploy the software executable, and run the e2e tests. The executable is then found in the 'dist' directory.

Running

Here's an example call that writes out JSON from the ACH file:

dist/ach -f spec/sampleData/basicPpdFile.ach > ach.json

Or it also accepts piped input:

type spec/sampleData/basicPpdFile.ach | dist/ach > ach.json
dist/ach < spec/sampleData/basicPpdFile.ach > ach.json

Running in Development Mode

Run command:

npm run dev