
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

A microscopic, RESTful, AJAX browser library; just under 2kb.
Installation:
var request = new Ax( Object || Arguments);
var request = new Ax(method, url, [data], [type], done);
Similar approach, see arguments above for explanation of values...
var request = new Ax({
method: method,
url: url,
data: [data],
type: [type],
done: done
}, [done]);
NOTE: the done callback can either be in the first argument that is an object, or the last argument; but not both. If a function is detected as the last argument, Ax will use that and ignore the other.
The done callback function is passed as the last argument.
var request = new Ax(...args, function (res, xhr, err) {
// Single error detection
if (err) {
// Whoops lets do something
}
console.log('response is', res);
});
It may also be part of the options object
var request = new Ax({
...options,
done: function (res, xhr, err) {
if (err) console.error(err);
console.log(res, xhr);
}
});
Get user data...
var request = new Ax('GET', '/users/' + userid', function (res, xhr, err) {
if (err) {
// An error has occurred
} else {
var userdata = res;
// Do something with user data.
}
});
Update a user profile...
var request = new Ax({
method: 'PUT',
url: userUrl,
data: newData,,
done: callBack()
});
Post a form...
var request = new Ax('POST', '/submit/', formData, function (res, xhr, err) {
if (err) {
alert ('total failure', err);
} else {
console.log('server response is', res);
}
});
<script src="ax.min"></script>
Ax.js has been built with browserify, and works with both browserify and webpack.
Install via npm:
npm install axjs
require the module
var Ax = require('axjs');
Ax.js can be required in with a UMD or AMD library like requirejs.
var Ax = require('ax');
FAQs
A microscopic, RESTful, AJAX browser library; just under 2kb.
We found that axjs 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.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.