Skip to content

Commit 9f7ace6

Browse files
committed
Add Elm example for PSPDFKit integration
- Created a new Elm example project demonstrating the integration of PSPDFKit for Web. - Added essential files including package.json, README.md, and webpack configuration for build setup. - Implemented a basic HTML structure with a PDF viewer using PSPDFKit. - Included scripts for running the application and managing dependencies. - Added a sample PDF for demonstration purposes and configured the application to handle annotations. - Introduced a .gitignore file to exclude unnecessary files and directories. - Provided detailed instructions in the README for getting started and running the example.
1 parent 675f843 commit 9f7ace6

11 files changed

+4577
-0
lines changed

examples/elm/.gitignore

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

examples/elm/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 © 2017-2025 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/elm/README.md

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Nutrient Web SDK Example – Elm
2+
3+
This example shows how to integrate [Nutrient Web SDK](https://www.nutrient.io/web/) into an [Elm](https://elm-lang.org/) app.
4+
5+
## Prerequisites
6+
7+
- [Node.js](http://nodejs.org/)
8+
- A Nutrient Web SDK license. If you don't already have one
9+
you can [request a free trial here](https://www.nutrient.io/try/).
10+
11+
## Support, Issues and License Questions
12+
13+
PSPDFKit offers support for customers with an active SDK license via https://www.nutrient.io/support/request/
14+
15+
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/
16+
17+
## Getting Started
18+
19+
Clone the repo:
20+
21+
```bash
22+
git clone https://github.com/PSPDFKit/pspdfkit-web-example-elm.git
23+
cd pspdfkit-web-example-elm
24+
```
25+
26+
Install the project dependencies with `npm`:
27+
28+
```bash
29+
npm install
30+
```
31+
32+
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).
33+
34+
Edit `./config/license-key` and replace the string `YOUR_LICENSE_KEY_GOES_HERE` with the license key that you received via e-mail.
35+
36+
## Running the Example
37+
38+
We are ready to launch the app! 🎉
39+
40+
```bash
41+
npm run start
42+
```
43+
44+
You can now open http://localhost:3000 in your browser and enjoy!
45+
46+
## License
47+
48+
This software is licensed under a [modified BSD license](LICENSE).
49+
50+
## Contributing
51+
52+
Please ensure
53+
[you have signed our CLA](https://www.nutrient.io/guides/web/current/miscellaneous/contributing/) so that we can
54+
accept your contributions.

examples/elm/assets/example.pdf

234 KB
Binary file not shown.

examples/elm/config/license-key

Whitespace-only changes.

examples/elm/config/webpack.js

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
const path = require("node:path");
2+
const HtmlWebpackPlugin = require("html-webpack-plugin");
3+
const CopyWebpackPlugin = require("copy-webpack-plugin");
4+
5+
module.exports = {
6+
entry: path.resolve(__dirname, "../src/index.js"),
7+
mode: "development",
8+
resolve: {
9+
extensions: [".js", ".elm"],
10+
},
11+
output: {
12+
publicPath: "",
13+
},
14+
module: {
15+
rules: [
16+
{
17+
test: /\.elm$/,
18+
exclude: [/elm-stuff/, /node_modules/],
19+
use: {
20+
loader: "elm-webpack-loader",
21+
},
22+
},
23+
],
24+
},
25+
plugins: [
26+
new HtmlWebpackPlugin(),
27+
new CopyWebpackPlugin({
28+
patterns: [
29+
{
30+
from: "./node_modules/pspdfkit/dist/pspdfkit-lib",
31+
to: "./pspdfkit-lib",
32+
},
33+
{
34+
from: "./assets/example.pdf",
35+
to: "./example.pdf",
36+
},
37+
],
38+
}),
39+
],
40+
41+
devServer: {
42+
port: 3000,
43+
},
44+
};

examples/elm/elm.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"type": "application",
3+
"source-directories": ["src"],
4+
"elm-version": "0.19.1",
5+
"dependencies": {
6+
"direct": {
7+
"elm/browser": "1.0.1",
8+
"elm/core": "1.0.2",
9+
"elm/html": "1.0.0"
10+
},
11+
"indirect": {
12+
"elm/json": "1.1.2",
13+
"elm/time": "1.0.0",
14+
"elm/url": "1.0.0",
15+
"elm/virtual-dom": "1.0.2"
16+
}
17+
},
18+
"test-dependencies": {
19+
"direct": {},
20+
"indirect": {}
21+
}
22+
}

0 commit comments

Comments
 (0)