|
| 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. |
0 commit comments