├── .dockerignore ├── .gitignore ├── .tool-versions ├── Dockerfile ├── LICENSE ├── README.md ├── app.js ├── assets └── example.pdf ├── bin └── www ├── config ├── aia-jwt.pem ├── index.js └── jwt.pem ├── db └── index.js ├── docker-compose.yml ├── eslint.config.mjs ├── package.json ├── public ├── javascripts │ ├── ai-assistant.js │ ├── document-viewer.js │ └── upload.js └── stylesheets │ ├── app.css │ ├── document.css │ ├── login.css │ ├── navbar.css │ ├── scaffolding.css │ └── thumbnails.css ├── routes ├── api.js ├── auth.js ├── documents.js ├── login.js └── upload.js ├── util └── index.js └── views ├── error.ejs ├── index.ejs ├── login.ejs └── show.ejs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 24.0.1 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/app.js -------------------------------------------------------------------------------- /assets/example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/assets/example.pdf -------------------------------------------------------------------------------- /bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/bin/www -------------------------------------------------------------------------------- /config/aia-jwt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/config/aia-jwt.pem -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/config/index.js -------------------------------------------------------------------------------- /config/jwt.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/config/jwt.pem -------------------------------------------------------------------------------- /db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/db/index.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /public/javascripts/ai-assistant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/javascripts/ai-assistant.js -------------------------------------------------------------------------------- /public/javascripts/document-viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/javascripts/document-viewer.js -------------------------------------------------------------------------------- /public/javascripts/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/javascripts/upload.js -------------------------------------------------------------------------------- /public/stylesheets/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/stylesheets/app.css -------------------------------------------------------------------------------- /public/stylesheets/document.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/stylesheets/document.css -------------------------------------------------------------------------------- /public/stylesheets/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/stylesheets/login.css -------------------------------------------------------------------------------- /public/stylesheets/navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/stylesheets/navbar.css -------------------------------------------------------------------------------- /public/stylesheets/scaffolding.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/stylesheets/scaffolding.css -------------------------------------------------------------------------------- /public/stylesheets/thumbnails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/public/stylesheets/thumbnails.css -------------------------------------------------------------------------------- /routes/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/routes/api.js -------------------------------------------------------------------------------- /routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/routes/auth.js -------------------------------------------------------------------------------- /routes/documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/routes/documents.js -------------------------------------------------------------------------------- /routes/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/routes/login.js -------------------------------------------------------------------------------- /routes/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/routes/upload.js -------------------------------------------------------------------------------- /util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/util/index.js -------------------------------------------------------------------------------- /views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/views/error.ejs -------------------------------------------------------------------------------- /views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/views/index.ejs -------------------------------------------------------------------------------- /views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/views/login.ejs -------------------------------------------------------------------------------- /views/show.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PSPDFKit/pspdfkit-server-example-nodejs/HEAD/views/show.ejs --------------------------------------------------------------------------------