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

@runopencode/http

v17.0.6

Published

This library is abstraction of the HTTP client for JavaScript/TypeScript supporting observables from RxJS. Library is inspired by Angular's HTTP service with a goal to provide framework-agnostic HTTP client which can be used outside Angular ecosystem.

Downloads

462

Readme

@runopencode/http

This library is abstraction of the HTTP client for JavaScript/TypeScript supporting observables from RxJS. Library is inspired by Angular's HTTP service with a goal to provide framework-agnostic HTTP client which can be used outside Angular ecosystem.

However, library is not perfect, it is intended to cover the vast majority of use cases, GET, POST, PATCH, DELETE... requests, commonly used for REST and REST-like APIs. Edge cases might occur which are not covered by this library. For those, PRs are welcome.

Features

  • Abstraction of HTTP client for JavaScript/TypeScript supporting observables from RxJS and promises through Observable.toPromise() method.
  • Support for GET, POST, PATCH, DELETE, as well as any other HTTP method via request method.
  • Support for request and response interceptors.
  • Error model based on Error class with support for instanceof operator.
  • Support for request cancellation via unsubscription from observable.
  • Easily extensible with custom adapters.
  • API similar to Angular's HTTP client.
  • Available list of all known HTTP status codes via HttpStatusCode enum.

Motivation

Angular's HTTP client is excellent, but it is tightly coupled with Angular framework. This library provides similar functionality, but it is framework-agnostic. As consequence, you can achieve following goals:

  • Have similar API for HTTP client in Angular and non-Angular projects.
  • Have less coupled code with Angular framework, which is considered as one of the most volatile frameworks in JavaScript ecosystem. Switching from Angular to React, Vue or any other framework should be easier.
  • Develop framework-agnostic libraries and components which can be used in Angular and non-Angular projects as well. When those libraries/components are used in Angular project, HTTP client can be provided by Angular's DI and all requests within libraries/components will be intercepted by project interceptors as well.
  • Replace HTTP request adapter in Angular project with custom one, statically or dynamically.

Examples

This library was actually created to solve two problems which we had in our projects:

Cordova/Capacitor/Ionic HTTP client

When we used Cordova/Capacitor + Ionic + Angular for developing mobile apps, we wanted to use native HTTP client for better performance and to avoid CORS issues (see https://github.com/silkimen/cordova-plugin-advanced-http and https://capacitorjs.com/docs/apis/http). It was very convenient to use browser on desktop for development and testing, but it was impossible to use native HTTP client of mobile device. Capacitor solves this problem, by patching window.fetch method, however, observables from RxJS are not supported. So we developed this library and adapter for browser which uses Angular's HTTP client and adapter for native HTTP client. Since we used Angular, when wiring library into DI, we would detect device type and depending on it, either native HTTP client of mobile device is used, or Angular's HTTP client. Having API very similar to Angular's HTTP client, our developers did not have to learn anything new.

Web components with HTTP client

We were using StencilJS https://stenciljs.com for development of web components. Those components were used in standard, server-side rendered web pages, but also in Angular projects. When those components are used in Angular projects they needed to use same HTTP client which is provided by Angular's DI, with all interceptors used within project. This was impossible to achieve with Angular's HTTP client, because it is tightly coupled with Angular framework. However, with this library, it was possible to achieve this goal.

Available adapters/integrations:

  • Native in-browser fetch adapter, which is used by default and delivered with this library.
  • Angular's HTTP adapter, which is provided as standalone package @runopencode/ngx-http-client. Package exposes Angular module as well for easy integration into Angular project.

Learn more:

External resources

TODO:

  • [ ] Write an adapter for: https://github.com/silkimen/cordova-plugin-advanced-http.
  • [ ] Add support for tracking download response (stream response).
  • [ ] Add more unit tests.
  • [ ] Simplify http client method invocations when setting headers, instead of requesting for HttpHeadersInterface, use plain object and convert it to HttpHeadersInterface internally.