Skip to content

niutech/vue-in-web-worker

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
src
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Vue.js in Web Worker

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