Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

niutech/vue-in-web-worker

Repository files navigation

This is a starter app of Vue.js working in Web Worker using WorkerDOM, bundled by Rollup.js. This allows Vue.js to offload its work to a background thread and send updates back to the main thread asynchronously, which should greatly increase rendering performance. See this blog post for details.

Benchmarks

Compare these rendering performance tests:

Developing

Develop you Vue.js app as always, using main.js as an entry point. In index.html, add a wrapper around #app pointing to main.js and inject worker-dom.js library like this:

<main src="dist/main.js">
  <div id="app"></div>
</main>
<script src="dist/worker-dom.js"></script>

Building

First run npm install to set up the project. To build the files in dest folder, run npm run build or rollup -c. Then start the local web server e.g. python -m http.server and go to http://localhost:8000. Your index.html page should load worker-dom.js, which should asynchronously fetch and load both worker.mjs and main.js modules into Web Worker.

License

© 2021 Jerzy Głowacki under Apache Lincese 2.0

Morty Proxy This is a proxified and sanitized view of the page, visit original site.