webworkify-webpack icon indicating copy to clipboard operation
webworkify-webpack copied to clipboard

launch a web worker at runtime that can require() in the browser with webpack

Results 9 webworkify-webpack issues
Sort by recently updated
recently updated
newest added

This library attempts to find dependencies using a regular expression: https://github.com/borisirota/webworkify-webpack/blob/2e7827dc8e88a4eb45055d0cc7a0597de0d4fd99/index.js#L97-L103 In minified code, `webpackRequireName` will often be a single-character function name like `r`, so this regex will detect all...

I recently noticed when upgrading my app to Webpack 5 that the blob webworkify-webpack was generating was significantly different than the one being created using Webpack 4. It seems like...

Hi, I can't get webworkify-webpack working for a node_module dependency that uses webworkify v^1.2.1 and uses the `require('./worker')` rather than `require.resolve('./worker')` for v2.1.5 Here is my `webpack.config.js`. ```javascript module.exports =...

![Uploading image.png…]() ![Uploading image.png…]()

Hello. I have been using your awesome library for a while. Recently updated my project to webpack "4.29.5", after that, all the workers started to complain: **Uncaught TypeError: __webpack_require__.t is...

https://webpack.js.org/api/plugins/ https://webpack.js.org/development/how-to-write-a-plugin/ https://webpack.js.org/development/plugin-patterns/ https://github.com/webpack/docs/wiki/how-to-write-a-plugin https://webpack.js.org/api/plugins/compiler/ https://webpack.js.org/api/plugins/compilation/ https://webpack.js.org/api/parser/ https://github.com/webpack-contrib/worker-loader https://github.com/webpack/webpack/tree/master/lib/webworker https://www.youtube.com/watch?v=NHI_PhoykVU https://github.com/TheLarkInn/everything-is-a-plugin https://github.com/TheLarkInn/artsy-webpack-tour https://medium.com/webpack/contributors-guide/home extract-text-webpack-plugin: https://github.com/webpack-contrib/extract-text-webpack-plugin/blob/master/src/index.js https://github.com/webpack-contrib/extract-text-webpack-plugin/blob/master/src/loader.js Preact async loader: 1. https://github.com/developit/preact-cli/blob/master/src/lib/webpack/async-component-loader.js 2. https://github.com/developit/preact-cli/blob/master/src/components/async.js it isn't possible to create new files...

With 2.0.0 the interface of this library is diverged from https://github.com/substack/webworkify . Therefore it is no longer possible to use `webworkify-wbpack` as a direct alternative to `webworkify` via: ``` resolve:...

Hi, sometimes we have the need to construct a new Worker inside a Worker that makes them to be nested. The existing code seems to be assumed to be executed...