Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@qrvey/fetch

Package Overview
Dependencies
Maintainers
11
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qrvey/fetch

  • 1.0.0
  • npm
  • Socket score

Version published
Weekly downloads
3.8K
increased by51.48%
Maintainers
11
Weekly downloads
 
Created
Source

@qrvey/fetch

install size

@qrvey/fetch is a lightweight and reliable library for making RESTful requests in Node.js applications. It uses the native fetch library (Node.js 18+), avoiding the need for external dependencies.

Installation

You can install the @qrvey/fetch package via npm. Run the following command in your terminal:

npm install @qrvey/fetch

API Documentation

Available Methods

  • get(endpoint: string, options: IHttpActionOptions): Promise<any>: Performs an HTTP GET request.
  • post(endpoint: string, body: unknown, options: IHttpActionOptions): Promise<any>: Performs an HTTP POST request.
  • put(endpoint: string, body: unknown, options: IHttpActionOptions): Promise<any>: Performs an HTTP PUT request.
  • patch(endpoint: string, body: unknown, options: IHttpActionOptions): Promise<any>: Performs an HTTP PATCH request.
  • delete(endpoint: string, body: unknown, options: IHttpActionOptions): Promise<any>: Performs an HTTP DELETE request.

Example Usage

CommonJS

const { AbstractFetchService } = require('@qrvey/fetch');

class MyFetchClient extends AbstractFetchService {
    /**
     * Performs an HTTP GET request.
     * 
     * @param {string} endpoint - The endpoint of the request.
     * @param {object} options - Options for the request.
     * @returns {Promise<any>} The response of the request.
     */
    static findData(endpoint, options) {
        return this.get(endpoint, options);
    }

    /**
     * Performs an HTTP POST request.
     * 
     * @param {string} endpoint - The endpoint of the request.
     * @param {object} data - The data to send in the request.
     * @param {object} options - Options for the request.
     * @returns {Promise<any>} The response of the request.
     */
    static sendData(endpoint, data, options) {
        return this.post(endpoint, data, options);
    }
}
module.exports = MyFetchClient;

ECMAScript

import { AbstractFetchService } from '@qrvey/fetch';

class MyFetchClient extends AbstractFetchService {
    /**
     * Performs an HTTP GET request.
     * 
     * @param {string} endpoint - The endpoint of the request.
     * @param {object} options - Options for the request.
     * @returns {Promise<any>} The response of the request.
     */
    static findData(endpoint, options) {
        return this.get(endpoint, options);
    }

    /**
     * Performs an HTTP POST request.
     * 
     * @param {string} endpoint - The endpoint of the request.
     * @param {object} data - The data to send in the request.
     * @param {object} options - Options for the request.
     * @returns {Promise<any>} The response of the request.
     */
    static sendData(endpoint, data, options) {
        return this.post(endpoint, data, options);
    }
}

export default MyFetchClient;

Keywords

FAQs

Package last updated on 17 Apr 2024

Did you know?

Socket

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc