Skip to content

Commit af76723

Browse files
committed
Add WebAssembly benchmark example for PSPDFKit integration
- Introduced a new example project for benchmarking WebAssembly performance using PSPDFKit. - Added essential files including package.json, README.md, and configuration files for the benchmark setup. - Implemented a React-based UI for running various performance tests on PDF rendering, searching, exporting, and annotations. - Included scripts for starting the benchmark server and managing dependencies. - Added sample assets including a default PDF document and a logo for the UI. - Introduced .gitignore to exclude unnecessary files and directories. - Provided detailed instructions in the README for getting started and running the benchmark.
1 parent 20dd0c2 commit af76723

27 files changed

+29556
-5
lines changed

biome.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"ignore": [
55
"examples/angular/.angular/cache/*",
66
"./examples/*/public/*",
7-
"./examples/blazor/wasm/wwwroot/css/*"
7+
"./examples/blazor/wasm/wwwroot/css/*",
8+
"./examples/wasm-benchmark/*"
89
],
910
"ignoreUnknown": true
1011
},

examples/react/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"prebuild": "npm run verify-installation",
3535
"build": "react-scripts build",
3636
"test": "react-scripts test",
37-
"eject": "react-scripts eject"
37+
"eject": "react-scripts eject",
38+
"start:e2e": "npm run start"
3839
},
3940
"devDependencies": {
4041
"cross-env": "^7.0.2",

examples/salesforce/force-app/main/default/pages/PSPDFKit_InitPSPDFKit.page

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<script type="text/javascript"> __sfdcSessionId = '{!$Api.Session_Id}';</script>
66
<script src="../../soap/ajax/54.0/connection.js" type="text/javascript"></script>
7-
<script src="https://cdn.cloud.pspdfkit.com/[email protected].0/pspdfkit.js" type="text/javascript"></script>
7+
<script src="https://cdn.cloud.pspdfkit.com/[email protected].1/pspdfkit.js" type="text/javascript"></script>
88
<script type="text/javascript">
99

1010
var recId = '{!fileDetail}';
@@ -13,7 +13,7 @@
1313
var contVersion;
1414
var state;
1515
var pdf;
16-
var baseUrl = `https://cdn.cloud.pspdfkit.com/[email protected].0/`;
16+
var baseUrl = `https://cdn.cloud.pspdfkit.com/[email protected].1/`;
1717

1818
const saveButton = {
1919
type: "custom",

examples/wasm-benchmark/.gitignore

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
6+
# testing
7+
/coverage
8+
9+
# production
10+
/build
11+
12+
# artifacts
13+
/public/vendor
14+
15+
# misc
16+
.DS_Store
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*

examples/wasm-benchmark/LICENSE

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
The PSPDFKit for Web component is under a commercial license.
2+
Ping [email protected] for details.
3+
4+
The remaining benchmark code is under MIT:
5+
6+
The MIT License (MIT)
7+
8+
Copyright (c) 2018-present PSPDFKit GmbH (www.nutrient.io)
9+
10+
Permission is hereby granted, free of charge, to any person obtaining a copy
11+
of this software and associated documentation files (the "Software"), to deal
12+
in the Software without restriction, including without limitation the rights
13+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
copies of the Software, and to permit persons to whom the Software is
15+
furnished to do so, subject to the following conditions:
16+
17+
The above copyright notice and this permission notice shall be included in
18+
all copies or substantial portions of the Software.
19+
20+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26+
THE SOFTWARE.

examples/wasm-benchmark/README.md

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<center>
2+
<a href="http://iswebassemblyfastyet.com/">
3+
<img src="https://www.nutrient.io/assets/images/blog/2018/webassembly-benchmark/article-header.png?commit=d5901d372044382ad59d52a0dac7d4a136db7816" width="1000" style="max-width: 100%;">
4+
</a>
5+
</center>
6+
7+
# WebAssembly Benchmark by PSPDFKit
8+
9+
A Benchmark for WebAssembly (Wasm, WA) that uses [PSPDFKit for Web](https://www.nutrient.io/web/) Standalone.
10+
11+
The rendering engine of [PSPDFKit for Web](https://www.nutrient.io/web/) Standalone is written in C/C++ and compiled to Wasm.
12+
13+
Get your score in the [live demo](http://iswebassemblyfastyet.com/) and learn more in our [blog post](https://www.nutrient.io/blog/2018/a-real-world-webassembly-benchmark/).
14+
15+
## Prerequisites
16+
17+
- [Node.js](http://nodejs.org/) (with npm or Yarn)
18+
- A PSPDFKit for Web license. If you don't already have one
19+
you can [request a free trial here](https://www.nutrient.io/try/).
20+
21+
## Getting Started
22+
23+
Install the `pspdfkit` npm package and move all contents to the vendor directory.
24+
25+
```bash
26+
npm install --save pspdfkit
27+
mkdir -p public/vendor
28+
cp -R node_modules/pspdfkit/dist public/vendor/pspdfkit
29+
```
30+
31+
Bootstrap the project by installing all the other dependencies.
32+
33+
```bash
34+
npm install
35+
```
36+
37+
## Running the Benchmark
38+
39+
Now that PSPDFKit for Web is installed, you need to copy your product (license) key to the `public/license-key` file.
40+
41+
We can now run the benchmark server:
42+
43+
```bash
44+
npm start
45+
```
46+
47+
The benchmark is available at `http://localhost:3000`.
48+
49+
## Building a Production Version
50+
51+
You can build an optimized version using the following command:
52+
53+
```bash
54+
PUBLIC_URL="/webassembly-benchmark/" npm run build
55+
```
56+
57+
Where `PUBLIC_URL` must be set according to the final URL, where the application is hosted.
58+
59+
## Optimizations
60+
61+
The following optimizations can be enabled via URL parameter:
62+
63+
- `disableWebAssemblyStreaming`, `true` by default
64+
- `standaloneInstancesPoolSize`, `0` by default
65+
- `runsScaleFactor`, scales the number of test runs, `1` by default
66+
67+
## What's in This Repository
68+
69+
This repository contains files used to build the [PSPDFKit WebAssembly benchmark](http://iswebassemblyfastyet.com/).
70+
71+
The source files are structured into two different categories:
72+
73+
- `src/lib` contains all files necessary to set up the test suite including the individual tests and helper functions.
74+
- `src/ui` contains a [React](https://reactjs.org/) application that is used to render the user interface.
75+
76+
For a main entry point, have a look at `src/index.js`.
77+
78+
## License
79+
80+
This software is licensed under [the MIT license](LICENSE).
81+
82+
## Contributing
83+
84+
Please ensure
85+
[you have signed our CLA](https://www.nutrient.io/guides/web/current/miscellaneous/contributing/) so that we can
86+
accept your contributions.

examples/wasm-benchmark/config/license-key

Whitespace-only changes.

examples/wasm-benchmark/license-key

Whitespace-only changes.

0 commit comments

Comments
 (0)