https://github.com/willkessler/pdf-renderer-example
A simple test of the node module pdf-fill-form on the IRS W9 form
https://github.com/willkessler/pdf-renderer-example
Last synced: 11 months ago
JSON representation
A simple test of the node module pdf-fill-form on the IRS W9 form
- Host: GitHub
- URL: https://github.com/willkessler/pdf-renderer-example
- Owner: willkessler
- License: mit
- Created: 2022-06-25T03:57:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-25T04:36:14.000Z (almost 4 years ago)
- Last Synced: 2025-04-14T08:45:27.520Z (about 1 year ago)
- Language: JavaScript
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fill PDF Form: Example code
### Building and running this example of using `pdf-fill-form`
First, get docker set up on your local rig.
Then:
``` shell
docker build -f Dockerfile -t pdf-renderer .
docker run -v $(pwd):/tmp pdf-renderer
```
This will run `index.js` which opens up the IRS W9 form (`fw9.pdf`)
and dumps out the form field names, and then runs `write_w9.js` which
will write out the filled W9 form into the present working directory
for your viewing pleasure.
To see how the form fields are filled in just look at `write_w9.js` for examples.
And see the repo for pdf-fill-form here:https://github.com/tpisto/pdf-fill-form