
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
A JavaScript concurrency library based on the join calculus.
The join calculus is a formal model for message passing concurrency. The name comes from its most powerful feature: join patterns (also known as chords). In the join calculus, programs do not actively request to receive a messages on a certain channel. Instead, they use join patterns, which declaratively specify reactions to specific message patterns (much like method declarations in object-oriented programming). The power of join patterns is that they can be used to atomically process messages from multiple channels.
This project includes a library implementation of join patterns (see src/index.js), as well as a JavaScript syntax extension for declaring channels and join patterns (see src/joinjs.ohm and src/joinjs.js).
Creating channels:
var joins = require('jsjoins');
var mySyncChannel = joins.Channel();
var myAsyncChannel = joins.AsyncChannel();
Sending messages:
mySyncChannel('hello!');
mySyncChannel({description: 'whatever'});
myAsyncChannel.send('hello!');
myAsyncChannel.send(99);
Join patterns:
joins.when(mySyncChannel).do(function() {
console.log('simple handler');
});
joins.when(mySyncChannel).and(myAsyncChannel).do(function() {
return 'value returned to synchronous send';
});
FAQs
A JavaScript concurrency library based on the join calculus.
The npm package jsjoins receives a total of 0 weekly downloads. As such, jsjoins popularity was classified as not popular.
We found that jsjoins 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
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.