Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Clooney is an actor (ayooo) library for the web. Classes given to Clooney will be instantiated and run in a worker, keeping the main thread responsive.
⚠️ Caveat: The class cannot rely on its surrounding scope, since it is executed in an isolated context. This might change once workers support ES6 modules.
An example says more than 1000 words:
<script src="/clooney.bundle.js"></script>
<script>
(async function() {
class MyRemoteClass {
doExpensiveCalculation(a, b) {
return a + b;
}
}
const instance = await Clooney.spawn(MyRemoteClass);
console.log(await instance.doExpensiveCalculation(5, 23));
})();
</script>
I’m collecting more examples of Clooney in action in this Glitch.
Functions and events are not transferable (i.e. can’t be sent from to a worker), but Clooney has special handling for them:
class MyRemoteClass {
onClick(remoteEvent) {
// … react to click …
}
}
const instance = await Clooney.spawn(MyRemoteClass);
const button = document.querySelector('button');
button.addEventListener('click', instance.onClick.bind(instance));
The remoteEvent
object is a mangled version of the original event to make it transferable:
const remoteEvent = {
targetId, // = event.target.id
targetClassList, // = [...event.target.classList]
detail, // = event.detail
data // = event.data
};
Clooney handles promises (and therefore, async methods) automatically:
class Actor {
timeoutThing() {
return new Promise(resolve => setTimeout(_ => resolve('ohai'), 1000));
}
}
const instance = await strategy.spawn(Actor);
alert(await instance.timeoutThing()); // Will alert() after 1 second
Clooney’s job is to take actors (class definitions) and spawn those actors in containers (Web Workers). You can use that instance as if it was a local instance (this is magic provided by Comlink).
Clooney.spawn(class, constructorArgs)
This call is equivalent to Clooney.defaultStrategy.spawn(class, constructorArgs)
. Clooney creates an instance of RoundRobinStrategy
as the default strategy.
Strategies decide how many containers are spun up and where a new instance is created.
export interface Strategy {
/**
* `spawn` instantiates the given actor in an actor container of the strategy’s choice.
* @returns The return type is the type as T, but every method is implicitly async.
*/
spawn<T>(actor: new () => T, constructorArgs: any[], opts: Object): Promise<T>;
/**
* `terminate` calls `terminate()` on all existing containers of the strategy.
*/
terminate(): Promise<void>;
}
Clooney.RoundRobinStrategy(opts)
RoundRobinStrategy
creates up to n containers and cycles through the containers with every spawn
call. RoundRobinStrategy
is the default strategy.
maxNumContainers
: Maximum number of containers to create (default: 1)newWorkerFunc
: Asynchronous function that creates a new container (default: new Worker(Clooney.defaultWorkerSrc)
)Clooney.asRemoteValue(obj)
asRemoteValue
marks a value. If a marked value is used as an parameter or return value, it will not be transferred but instead proxied.
If you want to use Clooney from a CDN, you need to work around the same-origin restrictions that workers have:
<script src="https://cdn.jsdelivr.net/npm/clooneyjs@0.6.6/clooney.bundle.min.js"></script>
<script>
async function newWorkerFunc() {
const blob = await fetch(Clooney.defaultWorkerSrc).then(resp => resp.blob())
return new Worker(URL.createObjectURL(blob));
}
const strategy = new Clooney.RoundRobinStrategy({newWorkerFunc});
// Business as usual using strategy.spawn() ...
</script>
License Apache-2.0
FAQs
Clooney is an actor library for the web
The npm package clooney receives a total of 0 weekly downloads. As such, clooney popularity was classified as not popular.
We found that clooney demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.