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

httpr

v1.0.0

Published

HTTP Library for JavaScript

Downloads

4

Readme

npm package Build Status

httpr

A simple library for working with HTTP requests in any environment, independent of the implementation.

Httpr is not just another HTTP provider, in fact it is an abstraction from other HTTP providers like XHR, jquery, fetch, etc.

Httpr provides a common interface to all of them, featuring also interceptors, which offer powerful options for managing HTTP requests, from adding headers and query parameters, to middleware caches or formatting requests and responses as needed.

Import

The library requires a peer of Lodash, and you should also include es6-promise polyfill if necessary.

ES6 import

import {Httpr} from 'httpr';

const http = new Httpr();

Commonjs

const Httpr = require('httpr').Httpr;

const http = new Httpr();

Browser

<script src="path/to/lodash.js"></script>
<script src="path/to/dist/httpr[.min].js"></script>

<script>
  var http = new httpr.Httpr();
</script>

Type Definitions

For TypeScript usage, a file with type definitions is bundled in npm.

This file is generated using barrel-defgen.

Building

npm install
npm run build

These commands will setup the package and generate the distributable files as well as the type definitions.

Other tasks:

  • npm run build:umd - generate library bundle.
  • npm run build:min - generate minified library bundle.
  • npm run build:defs - generate definitions from barrel to defs directory.
  • npm run clean - remove generated directories.
  • npm run lint - check style of source files.
  • npm run doc - generate documentation from sources to doc directory.
  • npm run test - run all test suites.
  • npm run test:unit - run unit tests only.