Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emkelley/ts-cli-starter
https://github.com/emkelley/ts-cli-starter
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/emkelley/ts-cli-starter
- Owner: emkelley
- Created: 2022-08-02T19:49:52.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-05T01:30:55.000Z (over 2 years ago)
- Last Synced: 2024-10-15T00:51:22.457Z (3 months ago)
- Language: TypeScript
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Transmitty
Transmitty is a Node app that will split a U.S. healthcare EFT/Payment Transmittal files, separate Checks and EFTs, and zip them for later processing.
Transmitty was built to aid one of my work processes; Taking these often large 1,000+ page PDFs filled with mixed Checks and EFT payments, and processing them into a workable state for our Finance department. It was extremely tedious and time-consuming, so I automated it. If you want to use it yourself it will require some modification for your needs. Definitely not my best work but it gets the job done.
![bJPTsBeewr](https://user-images.githubusercontent.com/11874169/164364244-7f127bae-149f-4c4c-b2ec-085f681d7477.png)
## Usage
0 - To use this utility, ensure your system has Node.js >= 16.x installed before continuing.
1 - Install the app's dependencies: `yarn` or `npm install`
2 - The source PDF to be processed is expected to be on the Desktop and be named `input.pdf`
3 - Run the app: `yarn start` or `npm run start`
4 - ???
5 - Profit: Final output files will be placed on the Desktop in a folder called 'Transmitty Output'. The cmd window will close and the output folder will automatically be opened.
### TipsFor quick access, create a batch file on your Desktop that moves into the project directory and runs the npm command to start it. Something like this adapted for your use:
```bat
cd /D E:\Master Projects\transmitty
yarn start
```