
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
A simple Reactive Extension combinator using JavaScript-based expression
Rxpression is a Reactive Extension Observable generator using simple JavaScript expression. The Rxpression instance accepts context information defining variables used in the expression, yields an Observable stream which emits evaluated result.
If a variable in the context or any intermediate evaluated result is Promise or Observable, the evaluation is applied to its emitted result.
It enables you to describe dependencies simply, instead of writing Promise chaining or Observable methods, even in asynchronous streaming environment.
$ npm install rxpression
var rxpr = new Rxpression('a * b - 1');
var context = {
a: new Rx.Observable.interval(1000).map(function(i) { return i+1; }),
b: 2
};
rxpr.evaluate(context).subscribe(function(result) {
console.log(result); // 1, 3, 5, 7, ...
});
$('body').html(
'<select id="state">'+
'<option>CA</option>'+
'<option>TX</option>'+
'<option>OR</option>'+
'</select>'
);
var stateSelect = $('#state');
var context = {
listAllCounty: function(state) {
var url = 'http://api.sba.gov/geodata/county_links_for_state_of/' + state + '.json';
return $.getJSON(url).promise();
},
state: Rx.Observable.fromEvent(stateSelect, 'change')
};
// get count of counties in the selected state in United States
var rxpr = new Rxpression('listAllCounty(state.target.value).length');
rxpr.evaluate(context).subscribe(function(result) {
console.log('state conties: ', result);
});
FAQs
A simple Reactive Extension combinator using JavaScript-based expression
We found that rxpression 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.