
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
http-francis
Advanced tools
an http class to make requests over the net with retry and interval between them
var Francis = require('http-francis');
var francis = new Francis.Http({
method:"GET", // JSONP, POST, DELETE, PUT
url:"https://httpbin.org/get"
});
npm install --save http-francis
You can found the library ready for production on node_modules/http-francis/dist/dist.js
bower install --save http-francis
You can found the library ready for production on bower_components/http-francis/dist/dist.js
var Francis = require('http-francis');
var francis = new Francis.Http({
method:"GET", // JSONP, POST, DELETE, PUT
url:"https://httpbin.org/get"
});
francis.promise.then((response) => {
response // [data, xhr.status, xhr]
})
var Francis = require('http-francis');
var francis = new Francis.Http({
method: "GET",
url: "https://someimageurl/image.png",
responseType: "blob",
mimeType: "image/png",
onProgress:(percentage)=>{
// there must be Content-Length header in the response to get the right percentage
// otherwise percentage is a NaN
}
});
francis.promise.then((response) => {
var imgTag = document.createElement("img");
imgTag.src = response[0];
document.body.appendChild(imgTag);
})
To read documentation, go to:
http://d-mobilelab.github.io/http-francis/0.1.2
Replace 0.1.2 with the version of the documentation you want to read.
FAQs
description of http-francis
We found that http-francis 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.