npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@bonny-kato/httpclient

v0.0.5

Published

HttpClient is a simple HTTP client for making asynchronous HTTP requests in JavaScript using built-in fetch api. It supports various HTTP methods such as `GET`, `POST`, `PUT`, and `DELETE`.

Downloads

3

Readme

HttpClient

Overview

HttpClient is a simple HTTP client for making asynchronous HTTP requests in JavaScript using built-in fetch api. It supports various HTTP methods such as GET, POST, PUT, and DELETE.

Inspiration

This utility function, used to initiate HTTP requests, was copied/pasted/modified from a version originally created by Walter Kimaro.

Installation

  • using npm
    npm i @bonny-kato/httpclient
  • using yarn
    yarn add @bonny-kato/httpclient

Usage

Constructor

import HttpClient from "@bonny-kato/httpclient";

const httpClient = new HttpClient({
    baseUrl: 'https://api.example.com',
    headers: {
        'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
    }
});

Methods

get

Makes an asynchronous GET request to the specified endpoint.

httpClient.get(endpoint);

post

Make a POST request to the specified endpoint with the provided data

httpClient.post(endpoint, data);

put

Sends a PUT request to the specified endpoint with the provided data.

httpClient.put(endpoint, data);

remove

Removes a resource from the server.

httpClient.remove(endpoint);

Examples

// Get users
const getUsers = () => {
    return httpClient.get("/users");
}

// Add user
const addUser = (data: User) => {
    return httpClient.post("/users", data);
}

// Update user
const updateUser = (userId: string, data: User) => {
    return httpClient.put(`/users/${userId}`, data);
}

// Remove user
const removeUser = (userId: string) => {
    return httpClient.remove(`/users/${userId}`);
}

Interfaces

IHeaders

export interface IHeaders {
    "Content-Type"?: "multipart/form-data" | "application/json" | undefined;
    Authorization?: string;
}

IHeaders

export interface IConfig {
    baseUrl: string;
    headers?: IHeaders;
}

HttpMethod

export type HttpMethod = "GET" | "POST" | "PUT" | "DELETE";

API Reference

Constructor

new HttpClient(config: IConfig)

Create a new instance of HttpClient.

  • config: An object containing configuration options.
    • baseUrl (string): The base URL for API requests.
    • headers (IHeaders): Optional. Custom headers to be included in each request.

Methods

request(method: HttpMethod, endpoint: string, data?: any): Promise<any>

Makes a generic HTTP request.

  • method (HttpMethod): The HTTP method for the request.
  • endpoint (string): The endpoint URL.
  • data (any): Optional. Data to be sent in the request body.

get(endpoint: string): Promise<any>

Makes an asynchronous GET request.

  • endpoint (string): The endpoint URL.

post(endpoint: string, data: object): Promise<any>

Makes a POST request.

  • endpoint (string): The endpoint URL.
  • data (object): Data to be sent in the request body.

put(endpoint: string, data: object): Promise<any>

Sends a PUT request.

  • endpoint (string): The endpoint URL.
  • data (object): Data to be sent in the request body.

remove(endpoint: string): Promise<void>

Removes a resource.

  • endpoint (string): The endpoint URL.

License

This project is licensed under the MIT License