项目作者: niutech

项目描述 :
Vue.js in Web Worker
高级语言: Vue
项目地址: git://github.com/niutech/vue-in-web-worker.git
创建时间: 2020-11-10T16:54:06Z
项目社区:https://github.com/niutech/vue-in-web-worker

开源协议:

下载


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:

  1. <main src="dist/main.js">
  2. <div id="app"></div>
  3. </main>
  4. <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