
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
@remixproject/plugin-webworker
Advanced tools
This library provides connectors to connect a plugin to an engine that can load webworkers. ``` npm install @remixproject/plugin-webworker ```
This library provides connectors to connect a plugin to an engine that can load webworkers.
npm install @remixproject/plugin-webworker
If you do not expose any API you can create an instance like this :
import { createClient } from '@remixproject/plugin-webworker'
const client = createClient()
client.onload(async () => {
const data = client.call('filemanager', 'readFile', 'ballot.sol')
})
If you need to expose an API to other plugin you need to extends the class:
import { createClient } from '@remixproject/plugin-webworker'
import { PluginClient } from '@rexmixproject/plugin'
class MyPlugin extends PluginClient {
methods = ['hello']
hello() {
console.log('Hello World')
}
}
const client = createClient()
client.onload(async () => {
const data = client.call('filemanager', 'readFile', 'ballot.sol')
})
FAQs
This library provides connectors to connect a plugin to an engine that can load webworkers. ``` npm install @remixproject/plugin-webworker ```
The npm package @remixproject/plugin-webworker receives a total of 1 weekly downloads. As such, @remixproject/plugin-webworker popularity was classified as not popular.
We found that @remixproject/plugin-webworker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.