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

xhfetch

v1.0.2

Published

💫 Tiny cancellable fetch

Downloads

45

Readme

xhfetch

Tiny cancellable fetch

  • Tiny: about 600 bytes of ES3 gzipped
  • Familiar: uses common fetch and XMLHttpRequest api
  • Supported: supports IE8+ (assuming Promise is polyfilled)

Installation

npm install xhfetch

Usage

No Cancellation

import { createRequest } from 'xhfetch';

// createRequest accepts same parameter as window.fetch
createRequest('https://api.github.com/users', {
    headers: {
        'Accept': 'application/json',
    },
})
  .fetch() // the api request will only be invoked when you call `fetch`
  .then(res => res.json());
  .then(users => console.log(users))

With Cancellation

import { createRequest } from 'xhfetch';

const { xhr, fetch } = createRequest('https://api.github.com/users', {
    headers: {
        'Accept': 'application/json',
    },
})

fetch()
  .then(res => res.json());
  .then(users => console.log(users))

setTimeout(() => {
    // cancels if the request takes more than a second
    xhr.abort();
}, 1000)

Examples

API

The goal of Xhfetch is to provide a familiar interface while keeping small size, therefore we only focus on a subset of fetch API that is most commonly used.

createRequest(url: string, options: Object) => { fetch, xhr }

Specify a request that you want to make and get a fetch function and a XMLHttpRequest object. The following properties in options will be accounted:

  • method
  • headers
  • credentials: Accepts a "include" string, which will allow both CORS and same origin requests to work with cookies. Xhfetch won't send or receive cookies otherwise. The "same-origin" value is not supported (just don't set it if it's same-origin).
  • body: The content to be transmitted in request's body. Common content types include FormData, JSON, Blob, ArrayBuffer or plain text.

.fetch()

The fetch function returns by createRequest does not accepts any parameter. Invoking this call will kicks off the API request and returns a response object in the Promise chain. The response object contains a subset of Response class functionality:

  • response.ok
  • response.status
  • response.statusText
  • response.clone()
  • response.text(), response.json(), response.blob()
  • response.headers

.xhr

The xhr object returns by createRequest is the underlying XMLHttpRequest object that is making the request, therefore you have access to all methods available for XMLHttpRequest, e.g. .abort() and .addEventListener()

License

MIT

Acknowledgements

  • The code of xhfetch is based on unfetch.