
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
rollup-plugin-off-main-thread
Advanced tools
Use Rollup with workers and ES6 modules today.
$ npm install --save rollup-plugin-off-main-thread
Workers are JavaScript’s version of threads. Workers are important to use as the main thread is already overloaded, especially on slower or older devices.
This plugin takes care of shimming module support in workers and allows you to use new Worker()
.
OMT is the result of merging loadz0r and workz0r.
// rollup.config.js
import OMT from "rollup-plugin-off-main-thread";
export default {
input: ["src/main.js"],
output: {
dir: "dist",
// You _must_ use “amd” as your format
format: "amd"
},
plugins: [OMT()]
};
I set up a gist to show a full setup with OMT.
{
// ...
plugins: [OMT(options)];
}
loader
: A string containing the EJS template for the amd loader. If undefined
, OMT will use loader.ejs
.useEval
: Use fetch()
+ eval()
to load dependencies instead of <script>
tags and importScripts()
. This is not CSP compliant, but is required if you want to use dynamic imports in ServiceWorker.marker
: A string that is temporarily injected to mark new Worker()
calls. It’s only purpose is to be unique enough that the string sequence can’t appear by coincidence in ohter places. The default should be fine 99% of the time.workerRegexp
: A RegExp to find new Workers()
calls. The second capture group must capture the provided file name without the quotes.filenameRegexp
: A RegExp that finds the file name after Rollup has transformed dynamic imports.amdFunctionName
: Function name to use instead of AMD’s define
License Apache-2.0
FAQs
Use Rollup with workers and ES6 modules today.
The npm package rollup-plugin-off-main-thread receives a total of 57 weekly downloads. As such, rollup-plugin-off-main-thread popularity was classified as not popular.
We found that rollup-plugin-off-main-thread demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.