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

http-request-client

v3.2.0

Published

Http Client wrapper for doing requests

Downloads

47

Readme

Repository

https://github.com/reecemillsom/http-request-client

codecov codecov codecov

Point to Note

This project uses XMLHttpRequest from the window and the fetch function depending on which request you do, so as long as your projects have access to the DOM this will work.

Installation and Usage

  1. npm i --save http-request-client
  2. import { Get, Head, Patch, Post, Put, Del, Fetch, XMLHttpFactory, FetchRequestFactory } from "http-request-client";

For all XMLHttpRequest types e.g. Get, Head, Patch, Post, Put, Del:

    const xmlHttpFactory = new XMLHttpFactory(XMLHttpRequest);
    const get = new Get(xmlHttpFactory);

For Fetch:

    const requestFactory = new FetchRequestFactory(Request);
    const fetch = new Fetch(requestFactory, window);

All of the above have a handleRequest function that is the entry for all requests which can be called once the request class is instantiated.

GET, POST, PATCH, PUT, DELETE, HEAD request

GET request tries to parse the response to JSON, if this fails it will return the whole response anyways.

For Request types get, post, patch, put, delete, head a handleRequest function should be called which returns a promise result or error. The function has 3 params but only one is required.

Params are:

  1. Url type string required. This is the url you want to do a request to.
  2. Headers type object. This is if you have headers you wish to set when doing a request.
  3. Data you wish to send. This is if you have data to send along with the request. Typically when using a put or post request. Please stringify data before passing as a param.

Example of how to pass headers:

{"Content-type": "application/x-www-form-urlencoded"}

Fetch request

Fetch request will try to parse the response to JSON, if not it will return the whole response. This means if your content isn't json you can call .blob(), .text() and more for what you need.

Request type fetch has a handleRequest function which returns a promise result or error. This function only has 2 params.

Params are:

  1. Url type string required. This is the url you want to do a request to.
  2. Options type object. This is to be able to change type of request e.g. POST, GET or maybe change cache rules etc. To see full list of options visit: https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch and look at the init param options. By default fetch request does a GET request.

If using fetch be aware the current support of this function is for more recent browser versions, so use it if your not bothered about supporting older versions or do not need certain functionality.

Examples of requests

In order to test these requests you can clone the respository. I created a browserified bundle which gets attached to the window.

In order to test follow these steps:

  1. Run npm run browserify - This will output a file in the browserify directory called TestRequests.
  2. Open the html file located in the scripts directory in the browser - TestRequests.html.
  3. Open the developer console.
  4. Type requests and hit enter. You will see the instance for the corresponding requests are attached.
  5. Each instance has a handleRequest function as described earlier, fill the parameters as necessary and call the function.

Issues

If you find an issue please feel free to contact me, or open an issue on the project and I will look.