Socket
Socket
Sign inDemoInstall

ozone-api-request

Package Overview
Dependencies
4
Maintainers
3
Versions
107
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ozone-api-request

light api for ozone ajax call


Version published
Weekly downloads
55
decreased by-58.96%
Maintainers
3
Created
Weekly downloads
 

Readme

Source

Build Status NPM version Dependency Status

<ozone-api-request>

OzoneAPIRequest is a light wrapper over XMLHttpRequest to manager AJAX request to Ozone.

Events

  • 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.

Usage

  • Basic usage with promise
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)
   })
  • Usage with Event handler
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();
  • Modify request before send
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 & configure this module in an other a typeScript project

  • step 1: install dependency

Install you dependency npm install --save ozone-api-request

  • step 2: use node module resolution in tsconfig.json
{
    "compilerOptions":{
        "moduleResolution": "node"
    }
}
  • step 3: import where you need
import {OzoneAPIRequest} from 'ozone-api-request' // Import elements

FAQs

Last updated on 07 Mar 2018

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc