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

proxied-fetch

v1.0.11

Published

A tiny wrapper of fetch API that bypasses CORS limitations by making requests through proxies

Downloads

13

Readme

Proxied Fetch

Proxied Fetch is a tiny Fetch API wrapper with 0 dependencies that lets you bypass CORS limitations by simply proxy-ing your requests through known CORS proxy services.

Tired of seeing these error messages after requesting content from domains with different origin?

Failed to load http://your-end-point.com: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://different-domain.com' is therefore not allowed access. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

Struggle no more, and make CORS-free requests to any page/endpoint from any domain with Proxied Fetch package.

Install

Using NPM:

$ npm install proxied-fetch

Via CDN:

https://unpkg.com/proxied-fetch@latest/dist/bundle.umd.js

Using in browser

Use in the same way as fetch API. A Promise will be returned.


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
</head>
<body>
    <script src="https://unpkg.com/proxied-fetch@latest/dist/bundle.umd.js"></script>
    <script>
        proxiedFetch('https://xkcd.com/info.0.json')
            .then(res => res.json())
            .then(data => console.log(data));
    </script>
</body>
</html>

Using with require/import for module systems (AMD/CommonJS/ES6)


// ES6 Modules
import proxiedFetch from 'proxied-fetch';

// CommonJS
var proxiedFetch = require('proxied-fetch');

// AMD
require(['proxied-fetch'], function(proxiedFetch){  });

fetch vs proxiedFetch

fetch:

ajax request with fetch API

proxiedFetch:

ajax request with proxiedFetch

Using custom Proxies

If you want to use your own proxies, proxiedFetch accepts a list of custom proxy urls as a second optional parameter:


var myProxies = ['https://thingproxy.freeboard.io/fetch/', 'https://cors.io/?'];

proxiedFetch('https://xkcd.com/info.0.json', myProxies)
    .then(res => res.json())
    .then(data => console.log(data));