
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@easylibs/fetch-request
Advanced tools
The `FetchRequest` class is a utility class designed to simplify sending `Fetch` requests in a web application. It provides a simple interface for making HTTP requests and handling actions before and after the request is sent.
The FetchRequest class is a utility class designed to simplify sending Fetch requests in a web application. It provides a simple interface for making HTTP requests and handling actions before and after the request is sent.
Installing FetchRequest with npm, yarn or pnpm:
npm install @easylibs/fetch-request
# Or
yarn add @easylibs/fetch-request
# Or
pnpm add @easylibs/fetch-request
Or use direct inclusion with CDN:
<!--MINIFIED-->
<script src="https://cdn.jsdelivr.net/npm/@easylibs/fetch-request@latest/dist/fetch-request.min.js"></script>
<script src="https://unpkg.com/@easylibs/fetch-request@latest/dist/fetch-request.min.js"></script>
<!-- OR UNMINIFIED-->
<script src="https://cdn.jsdelivr.net/npm/@easylibs/fetch-request@latest/dist/fetch-request.js"></script>
<script src="https://unpkg.com/@easylibs/fetch-request@latest/dist/fetch-request.js"></script>
To use the FetchRequest class, create an instance by passing
an options object to the constructor. Here's an example:
import FetchRequest from '@easylibs/fetch-request'; // If using the CDN, this line is not necessary.
const request = new FetchRequest({
uri: 'https://example.com/api/endpoint',
data:{
id:1,
name:"Guy Bertrant",
email:"guybertrant@gmail.com"
},
submitter: document.getElementById('submit-button'),
options: {
method: 'POST',
responseDataType:"json",
requestDataConvert:"form-data",
callbacks:{
onPreFetch(data){
const newdata = {...data, surname:"MABIALA MABIALA"}
console.log(data) // {id:1, name:"Guy Bertrant", email:"guybertrant@gmail.com"}
console.log(newdata) // {id:1, name:"Guy Bertrant", email:"guybertrant@gmail.com", surname:"MABIALA MABIALA"}
return newdata;
},
onSuccess(response) {
console.log(response)
},
}
}
});
uri: The URI of the request.data: The data to be sent with the request.submitter: The HTML element that triggers the request.options: An object containing the request options.options.method: An object containing the request options.options.timeOut: An object containing the request options.options.requestDataConvert: An object containing the request options.options.responseDataType: An object containing the request options.callbacks: An object containing callback functions for various stages of the request.callbacks.onPreFetch: Function called before the request is sent. It can modify the data or perform other tasks.callbacks.onPostFetch: Function called before the request is sent. It can modify the data or perform other tasks.callbacks.onSuccess: Function called before the request is sent. It can modify the data or perform other tasks.callbacks.onError: Function called before the request is sent. It can modify the data or perform other tasks.onPreFetch: (data) => {
// Modify data before sending
return { ...data, additionalField: 'value' };
},
onPostFetch: Function called after receiving the response. It receives the response data as a parameter.onPostFetch: (response) => {
console.log('Post Fetch Response:', response);
},
onSuccess: Function called if the request is successful (status 200). It receives the response data as a parameter.onSuccess: (response) => {
console.log('Success Response:', response);
},
onError: Function called if the request fails (status other than 200). It receives the error and status code as parameters.onError: (error, status) => {
console.error('Error:', error, 'Status:', status);
},
You can further customize the FetchRequest class to handle different data formats, manage headers, and control other aspects of the HTTP request. The class's modular design allows for flexible integration into various web application architectures.
FAQs
The `FetchRequest` class is a utility class designed to simplify sending `Fetch` requests in a web application. It provides a simple interface for making HTTP requests and handling actions before and after the request is sent.
We found that @easylibs/fetch-request demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.