Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freewil/node-fedach
Parse FedACH Directory File Format for Node.js
https://github.com/freewil/node-fedach
Last synced: about 2 months ago
JSON representation
Parse FedACH Directory File Format for Node.js
- Host: GitHub
- URL: https://github.com/freewil/node-fedach
- Owner: freewil
- License: isc
- Created: 2012-08-21T09:06:26.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-19T03:44:21.000Z (almost 8 years ago)
- Last Synced: 2024-10-12T01:07:47.096Z (4 months ago)
- Language: CoffeeScript
- Size: 658 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fedach [![Build Status](https://travis-ci.org/freewil/node-fedach.svg?branch=master)](https://travis-ci.org/freewil/node-fedach)
Parse FedACH Directory File Format for Node.js
## Install
```
npm install fedach
```## Usage
```js
const fedach = require('fedach')fedach.download((err, data) => {
if (err) return console.error(err)
const results = fedach.parse(data)
console.log(results[0]);
})
``````js
{
routing: '011000015',
office: 'O',
frb: '011000015',
type: '0',
date: '020802',
newRouting: '000000000',
customer: 'FEDERAL RESERVE BANK',
address: '1000 PEACHTREE ST N.E.',
city: 'ATLANTA',
state: 'GA',
zip: '30309',
zipExt: '4470',
zipFull: '30309-4470',
phoneArea: '866',
phonePrefix: '234',
phoneSuffix: '5681',
phoneFull: '8662345681',
status: '1',
dataView: '1',
filter: ' '
}
```