Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
ozone-api-request
Advanced tools
!! WARNING !! this package is deprecated. Please use OzoneClient.call from ozone-typescript-client. !!
OzoneAPIRequest is a light wrapper over XMLHttpRequest to manager AJAX request to Ozone.
ozone-api-request-success Fired when connection to ozone succeeds. Event detail contains the XMLHttpRequest.
ozone-api-request-error Fired when connection to ozone fails. Event detail contains the XMLHttpRequest.
ozone-api-request-timeout Fired when connection timeout. Event detail contains the XMLHttpRequest
ozone-api-request-unauthorized Fired when server return 403 unauthorized. Event detail contains the XMLHttpRequest.
const OzoneAPIRequest = new OzoneAPIRequest();
OzoneAPIRequest.url = url;
OzoneAPIRequest.method = 'GET';
OzoneAPIRequest.sendRequest()
.then((res:XMLHttpRequest) => {
// Do something with XMLHttpRequest
console.log(res.response)
})
.catch((failRequest)=>{
// Do something with XMLHttpRequest to handel the error.
console.error(failRequest.statusText)
})
this.addEventListener('ozone-api-request-success', (event: Event) => {
// Do something with XMLHttpRequest
console.log(event.detail.response)
})
this.addEventListener('ozone-api-request-error', (event: Event) => {
// Do something with XMLHttpRequest to handel the error.
console.error(event.detail.statusText)
})
const OzoneAPIRequest = new OzoneAPIRequest();
OzoneAPIRequest.setEventTarget(this)
OzoneAPIRequest.url = url;
OzoneAPIRequest.method = 'GET';
OzoneAPIRequest.sendRequest();
const OzoneAPIRequest = new OzoneAPIRequest();
OzoneAPIRequest.url = url;
OzoneAPIRequest.method = 'GET';
const request = OzoneAPIRequest.createXMLHttpRequest();
// Modify default request
request.setRequestHeader('Cache-Control', 'only-if-cached');
*
OzoneAPIRequest.sendRequest(request);
// Handel response
Install you dependency npm install --save ozone-api-request
{
"compilerOptions":{
"moduleResolution": "node"
}
}
import {OzoneAPIRequest} from 'ozone-api-request' // Import elements
FAQs
light api for ozone ajax call
The npm package ozone-api-request receives a total of 104 weekly downloads. As such, ozone-api-request popularity was classified as not popular.
We found that ozone-api-request demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.