Home

Awesome

<br/> <p align="center"> <a href="https://github.com/ghengeveld/react-webworker"><img src="./react-webworker.png" width="425" /></a> </p> <p align="center"> Easy communication with a Web Worker<br/> or Service Worker from React. </p> <br/> <p align="center"> <a href="https://www.npmjs.com/package/react-webworker"> <img src="https://img.shields.io/npm/v/react-webworker.svg" alt="npm version"> </a> <a href="https://www.npmjs.com/package/react-webworker"> <img src="https://img.shields.io/npm/dm/react-webworker.svg" alt="npm downloads"> </a> <a href="https://bundlephobia.com/result?p=react-webworker"> <img src="https://img.shields.io/bundlephobia/min/react-webworker.svg" alt="minified size"> </a> <a href="https://travis-ci.org/ghengeveld/react-webworker"> <img src="https://img.shields.io/travis/ghengeveld/react-webworker.svg" alt="build status"> </a> <a href="https://codecov.io/github/ghengeveld/react-webworker"> <img src="https://img.shields.io/codecov/c/github/ghengeveld/react-webworker.svg" alt="code coverage"> </a> <a href="https://opensource.org/licenses/ISC"> <img src="https://img.shields.io/npm/l/react-webworker.svg" alt="license"> </a> <a href="https://github.com/ghengeveld/react-webworker/issues"> <img src="https://img.shields.io/github/issues/ghengeveld/react-webworker.svg" alt="issues"> </a> <a href="https://github.com/ghengeveld/react-webworker/pulls"> <img src="https://img.shields.io/github/issues-pr/ghengeveld/react-webworker.svg" alt="pull requests"> </a> </p>

React component for easy communication with a Web Worker. Leverages the Render Props pattern for ultimate flexibility as well as the new Context API for ease of use. Just specify the public url to your Web Worker and you'll get access to any messages or errors it sends, as well as the postMessage handler. Also works with Service Workers.

This package was modeled after React Async which helps you deal with Promises in React.

Install

npm install --save react-webworker

Usage

Using render props for ultimate flexibility:

import WebWorker from "react-webworker"

const MyComponent = () => (
  <WebWorker url="/worker.js">
    {({ data, error, postMessage }) => {
      if (error) return `Something went wrong: ${error.message}`
      if (data)
        return (
          <div>
            <strong>Received some data:</strong>
            <pre>{JSON.stringify(data, null, 2)}</pre>
          </div>
        )
      return <button onClick={() => postMessage("hello")}>Hello</button>
    }}
  </WebWorker>
)

Using helper components (don't have to be direct children) for ease of use:

import WebWorker from "react-webworker"

const MyComponent = () => (
  <WebWorker url="/worker.js">
    <WebWorker.Pending>
      {({ postMessage }) => <button onClick={() => postMessage("hello")}>Hello</button>}
    </WebWorker.Pending>
    <WebWorker.Data>
      {data => (
        <div>
          <strong>Received some data:</strong>
          <pre>{JSON.stringify(data, null, 2)}</pre>
        </div>
      )}
    </WebWorker.Data>
    <WebWorker.Error>{error => `Something went wrong: ${error.message}`}</WebWorker.Error>
  </WebWorker>
)

Usage with Parcel or worker-plugin for Webpack

Parcel and worker-plugin allow your Web Worker script to be automatically bundled. However this only works when you create the Worker instance yourself, instead of having react-webworker do it for you. Here's how that works:

import WebWorker from "react-webworker"

const myWorker = new Worker("./worker.js") // relative path to the source file, not the public URL

const MyComponent = () => <WebWorker worker={myWorker}>...</WebWorker>

The downside to this approach is that <WebWorker> will not manage the Worker's lifecycle. This means it will not automatically be terminated when <WebWorker> is unmounted.

Communicating with a Service Worker

Using <WebWorker> with a Service Worker is as simple as passing it as a custom worker instance:

const MyComponent = () => <WebWorker worker={navigator.serviceWorker}>...</WebWorker>

This will automatically setup a MessageChannel to enable bidirectional communication. Your Service Worker could look like this:

// `ports` is automatically provided with a MessageChannel port
self.onmessage = ({ data, ports: [port] }) => {
  console.log("inside the service worker:", data)
  port.postMessage(data) // instead of `self.postMessage`
}

Note that messages sent to an inactive (not "activated") Service Worker will be silently ignored. Like a custom Worker, you'll have to deal with the Service Worker lifecycle yourself.

API

Props

<WebWorker> takes the following properties:

url and options are evaluated at mount time, so they must be defined immediately and won't respond to changes.

A custom Worker provided through worker will not get terminated on unmount. You'll have to manage its lifecycle yourself.

Render props

<WebWorker> provides the following render props:

Note: it's recommended to send and receive JSON strings instead of JS objects for improved performance. You can use the parser and serializer props to have <WebWorker> deal with this on the client side, but your Worker must still (de)serialize messages on its end.

Examples

Using lastPostAt to show a loading indicator

import WebWorker from "react-webworker"

const MyComponent = () => (
  <WebWorker url="/worker.js">
    {({ data, error, postMessage, updatedAt, lastPostAt }) => (
      <div>
        {data && (
          <div>
            <strong>Received some data:</strong>
            <pre>{JSON.stringify(data, null, 2)}</pre>
          </div>
        )}
        <button onClick={() => postMessage("hello")} disabled={updatedAt < lastPostAt}>
          {updatedAt < lastPostAt ? "Loading..." : "Go"}
        </button>
      </div>
    )}
  </WebWorker>
)

Passing options to the Worker

import WebWorker from "react-webworker"

const MyComponent = () => (
  <WebWorker url="/worker.js" options={{ type: "module", credentials: "include" }}>
    ...
  </WebWorker>
)

Using parser and serializer to automatically parse incoming messages and stringify outgoing messages

import WebWorker from "react-webworker"

const MyComponent = () => (
  <WebWorker url="/worker.js" parser={JSON.parse} serializer={JSON.stringify}>
    {({ data, error, postMessage, updatedAt, lastPostAt }) => (
      <div>
        {data && (
          <div>
            <strong>Received some data:</strong>
            <pre>{JSON.stringify(data, null, 2)}</pre>
          </div>
        )}
        <button onClick={() => postMessage({ foo: "bar" })}>Send</button>
      </div>
    )}
  </WebWorker>
)

Note: the Worker must still implement JSON (de)serialization on its own end.

Helper components

<WebWorker> provides several helper components that make your JSX even more declarative. They don't have to be direct children of <WebWorker> and you can use the same component several times.

<WebWorker.Data>

Renders only when a message has been received.

Props

Examples

<WebWorker.Data>{data => <pre>{JSON.stringify(data)}</pre>}</WebWorker.Data>

<WebWorker.Error>

Renders only when an error has been received.

Props

Examples

<WebWorker.Error>{error => `Unexpected error: ${error.message}`}</WebWorker.Error>

<WebWorker.Pending>

Renders only when no message or error has been received yet. Enable persist to ignore errors.

Props