New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

offscreen-canvas

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

offscreen-canvas

Polyfill for OffscreenCanvas to move Three.js/WebGL/2D canvas to Web Worker

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
228
-9.88%
Maintainers
1
Weekly downloads
 
Created
Source

Offscreen Canvas Polyfill

JS polyfill (375 bytes) for OffscreenCanvas to move Three.js, WebGL or 2D canvas to Web Worker.

It will improve performance in Chrome and will load worker by <script> in Firefox, Safari, and other browsers.

The tutorial for this library: Faster WebGL/Three.js 3D graphics with OffscreenCanvas and Web Workers.

// index.js
import createWorker from 'offscreen-canvas/create-worker'

const worker = createWorker(canvas, '/worker.js', e => {
  // Messages from the worker
})

button.addEventListener('click', () => {
  worker.post({ message: 'update' })
})
// worker.js
import insideWorker from 'offscreen-canvas/inside-worker'

const worker = insideWorker(e => {
  if (e.data.canvas) {
    // Draw on the canvas
  } else if (e.data.message === 'move') {
    // Messages from main thread
  }
})
Sponsored by Evil Martians

Usage

Create separated bundle in webpack, Parcel or any other bundler:

  entry: {
    app: './src/app.js',
+   worker: './src/worker.js'
  }

Move all code working with <canvas> to worker.js. It means to move all WebGL or Three.js imports and scene related code.

import insideWorker from 'offscreen-canvas/inside-worker'
// Move Three.js imports here if you use Three.js

const worker = insideWorker(e => {
  if (e.data.canvas) {
    // Move scene building code here
  }
})

Some of Three.js code (mostly loaders) will not work in Web Worker. Use worker.isWorker to switch loaders:

    if (worker.isWorker) {
      loader = new ImageBitmapLoader()
    } else {
      loader = new ImageLoader()
    }

Put preload link to HTML templates with a URL to worker.js. Your bundle will add cache buster to bundle names, so bundle names will change every time you deploy application. This is why we need to store path to worker.js in HTML:

+   <link type="preload" as="script" href="./worker.js">
  </head>

Load worker in main app.js:

import createWorker from 'offscreen-canvas/create-worker'

const workerUrl = document.querySelector('[rel=preload][as=script]').href
const canvas = document.querySelector('canvas')

const worker = createWorker(canvas, workerUrl)

Keep all UI interaction code (listeners for clicks, mouse move, etc) in app.js. Send message to Worker when your need to update <canvas> after user actions:

button.addEventListener('click', () => {
  worker.post({ message: 'move' })
})

Process this messages in the worker:

  const worker = insideWorker(e => {
    if (e.data.canvas) {
      // Move scene building code here
-   }
+   } else if (e.data.message === 'move') {
+     // Move object on the scene
+   }
  })

Keywords

offscreen canvas

FAQs

Package last updated on 04 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts