npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

worker-query

v0.0.0

Published

Reduces the boilerplate in setting up a request/response pattern between your main thread and a web worker

Downloads

4

Readme

worker-query experimental

Reduces the boilerplate in setting up a request/response pattern between your main thread and a web worker. Intended for use with browserify and webworkify.

worker-query

Example

Here's a trivial example of calculating the nth fibonacci number. There's some code you can browserify in the example folder too.

// index.js
var fibonacci = require('./setup')

fibonacci(80, function(err, result) {
  if (err) throw err
  console.log(result) // 23416728348467684
})
// setup.js
var parent = require('worker-query/parent')
var worker = require('webworkify')

module.exports = parent(
  worker(require('./fibonacci'))
)
// fibonacci.js
module.exports = child(function(data, done) {
  var a = 0
  var b = 1
  var c

  for (var i = 1; i < data; i += 1) {
    c = a + b
    a = b
    b = c
  }

  done(null, c)
})

API

require('worker-query/child')(request(data, done(err, result[, transfers])))

Creates and returns a worker template: calling that function on a clean worker will set up everything you need on the worker's end. request is a function called every time data is requested with the data supplied and a done callback you should call with the result.

get = require('worker-query/parent')(worker)

Takes a fresh worker and sets up everything you need on the parent script's end to request data from it. Returns a function you can use to request data.

get(data, callback(err, result)[, transfers])

Pass data to the worker - when it's ready, it should return the result through callback. Optionally, you can pass through an array of transferable objects as a third argument for better performance.