Skip to content

Commit 4fb12e3

Browse files
committed
Add PWA example for PSPDFKit integration
- Created a new Progressive Web Application (PWA) example project demonstrating the integration of PSPDFKit for Web. - Added essential files including package.json, README.md, and configuration files for PWA setup. - Implemented a basic layout with a PDF viewer using PSPDFKit, including file upload functionality and offline capabilities. - Included scripts for building and running the application, along with asset copying for necessary PSPDFKit files. - Added sample assets including a PDF document and various icons for PWA. - Introduced .gitignore to exclude unnecessary files and directories. - Provided detailed instructions in the README for getting started and running the example.
1 parent c7f9026 commit 4fb12e3

25 files changed

+9957
-1
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ playwright-report
66
pspdfkit-lib/
77

88
open-iconic
9-
.next/
9+
.next/
10+
.nuxt/
11+
dist/
12+
analytics.js

examples/pwa/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
node_modules

examples/pwa/LICENSE

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
The PSPDFKit Sample applications are licensed with a modified BSD
2+
license. In plain language: you're allowed to do whatever you wish
3+
with the code, modify, redistribute, embed in your products (free or
4+
commercial), but you must include copyright, terms of usage and
5+
disclaimer as stated in the license.
6+
7+
You will require a commercial PSPDFKit License to run these examples
8+
in non-demo mode. Please refer to [email protected] for details.
9+
10+
Copyright © 2018-present PSPDFKit GmbH.
11+
All rights reserved.
12+
13+
Redistribution and use in source or binary forms,
14+
with or without modification, are permitted provided
15+
that the following conditions are met:
16+
17+
- Redistributions of source code must retain the above copyright
18+
notice, this list of conditions and the following disclaimer.
19+
20+
- Redistributions in binary form must reproduce the above copyright
21+
notice, this list of conditions and the following disclaimer in the
22+
documentation and/or other materials provided with the
23+
distribution.
24+
25+
- Redistributions of PSPDFKit Samples must include attribution to
26+
PSPDFKit, either in documentation or other appropriate media.
27+
28+
- Neither the name of the PSPDFKit, PSPDFKit GmbH, nor its developers
29+
may be used to endorse or promote products derived from
30+
this software without specific prior written permission.
31+
32+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
35+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
37+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
38+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
40+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
42+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

examples/pwa/README.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Nutrient Web SDK Example - PWA
2+
3+
This example shows how to integrate [Nutrient Web SDK](https://www.nutrient.io/web/) and create a PWA (Progressive Web App).
4+
5+
You can check out a live preview here: [www.nutrient.io/pwa](https://www.nutrient.io/pwa/).
6+
7+
This sample application features a basic PWA setup including a [manifest](src/manifest.js) and a [service worker](src/serviceWorker.js), to allow your app to function offline as well as an [IndexedDB storage](src/scripts/PSPDFKitFileStorage.js) for PDFs. This way, your files are persisted even after you close the browser.
8+
9+
In this example we use [workbox](https://github.com/GoogleChrome/workbox), a popular PWA framework by Google.
10+
11+
## Prerequisites
12+
13+
- [Node.js](http://nodejs.org/)
14+
- A Nutrient Web SDK license. If you don't already have one you can [request a free trial here](https://www.nutrient.io/try/).
15+
16+
## Support, Issues and License Questions
17+
18+
PSPDFKit offers support for customers with an active SDK license via https://www.nutrient.io/support/request/
19+
20+
Are you [evaluating our SDK](https://www.nutrient.io/try/)? That's great, we're happy to help out! To make sure this is fast, please use a work email and have someone from your company fill out our sales form: https://www.nutrient.io/sales/
21+
22+
## Getting Started
23+
24+
Clone the repo:
25+
26+
```bash
27+
git clone https://github.com/PSPDFKit/pspdfkit-web-example-pwa.git
28+
cd pspdfkit-web-example-pwa
29+
```
30+
31+
Install the project dependencies with `npm`:
32+
33+
```bash
34+
npm install
35+
```
36+
37+
Now that everything is installed we need to configure the app to use our [Nutrient Web SDK license key](https://www.nutrient.io/guides/web/current/standalone/integration).
38+
39+
Edit `./config/license-key` and replace the string `YOUR_LICENSE_KEY_GOES_HERE` with the license key that you received via e-mail.
40+
41+
## Running the Example
42+
43+
We are ready to launch the app! 🎉
44+
45+
To run the app in development mode:
46+
47+
```bash
48+
npm run start
49+
```
50+
51+
## Build Production Artifacts
52+
53+
To build a production version, just follow the above guide but instead of running `start`:
54+
55+
```bash
56+
npm run build
57+
```
58+
59+
The build script will then create a file called `./dist` which you can copy to your webserver as-is.
60+
61+
## How it works
62+
63+
Under `./src` you can find a simple application shell that loads Nutrient Web SDK.
64+
65+
The application uses a [service worker](src/serviceWorker.js) to provide offline support and pre-caching for the majority of the assets.
66+
67+
To reduce the amount of boilerplate, we use [workbox](https://github.com/GoogleChrome/workbox) - a library from Google that abstracts away some of the verbosity associated to the service worker creation and configuration.
68+
69+
We also use workbox-cli, another library from Google, to automatically generate a Manifest file for our ServiceWorker pre-cache when we run `npm start`. You can find this configuration file in [`./src/workbox-config.js`](src/workbox-config.js).
70+
71+
To allow PDFs to be persisted locally so they do not need to be downloaded again, we've created the [`PSPDFKitFileStore`](src/scripts/PSPDFKitFileStore.js) library. It uses a lightweight and `Promise`-based wrapper around the IndexedDB API called [`idb`](https://github.com/jakearchibald/idb) under the hood. The code is designed to work independently of the PWA example and can also be used in Internet Explorer 11.
72+
73+
## Mobile Support
74+
75+
If you try to connect to the local development server remotely you'll quickly see that the PWA is not working as expected. This is due to the fact that the PWA APIs [require a valid SSL/TLS certificate](https://developers.google.com/web/progressive-web-apps/checklist) to properly function and you will probably not have this setup locally.
76+
77+
For a better experience, we suggest you check out the [hosted PWA example](https://www.nutrient.io/pwa/) or deploy a production build to your own server.
78+
79+
## License
80+
81+
This software is licensed under a [modified BSD license](LICENSE).
82+
83+
## Contributing
84+
85+
Please ensure [you have signed our CLA](https://www.nutrient.io/guides/web/current/miscellaneous/contributing/) so that we can accept your contributions.

examples/pwa/config/license-key

Whitespace-only changes.

0 commit comments

Comments
 (0)