├── .gitignore ├── PDFRStreamForBuffer.js ├── README.md ├── github └── screenshot.png ├── index.html ├── package.json ├── pdf.js └── server.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | 3 | test-output.pdf 4 | -------------------------------------------------------------------------------- /PDFRStreamForBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcooper/pdf-annotation-service/HEAD/PDFRStreamForBuffer.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcooper/pdf-annotation-service/HEAD/README.md -------------------------------------------------------------------------------- /github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcooper/pdf-annotation-service/HEAD/github/screenshot.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcooper/pdf-annotation-service/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcooper/pdf-annotation-service/HEAD/package.json -------------------------------------------------------------------------------- /pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcooper/pdf-annotation-service/HEAD/pdf.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agentcooper/pdf-annotation-service/HEAD/server.js --------------------------------------------------------------------------------