# any-http-reqwest

> AnyHTTP adapter for the reqwest library

Latest version **0.1.3** (published 2016-01-20) · Apache-2 license · 0 weekly downloads

## Install

```sh
npm install any-http-reqwest
pnpm add any-http-reqwest
yarn add any-http-reqwest
bun add any-http-reqwest
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2016-01-20 |
| First published | 2014-11-09 |
| Weekly downloads | 0 |
| License | Apache-2 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | Sébastien Cevey |
| Maintainers | theefer |
| Keywords | anyhttp, http, reqwest |

## Links

- npm: https://www.npmjs.com/package/any-http-reqwest
- Repository: https://github.com/argo-rest/any-http-reqwest
- Issues: https://github.com/argo-rest/any-http-reqwest/issues
- npm.io page: https://npm.io/package/any-http-reqwest

## Recent versions

- 0.1.3 (latest) — 2016-01-20
- 0.1.2 — 2015-08-25
- 0.1.1 — 2015-01-23
- 0.1.0 — 2014-11-09

## README

# AnyHTTP adapter for reqwest

[AnyHTTP](https://github.com/argo-rest/any-http) adapter for the
[reqwest](https://github.com/ded/reqwest) AJAX micro-library.

## Usage

This adapter is implemented as an ES6 module which can be installed
with [jspm](https://jspm.io) and loaded via
[SystemJS](https://github.com/systemjs/systemjs) as follows:

``` javascript
import {Http} from 'github:argo-rest/any-http-reqwest';

var httpClient = new Http;
httpClient.
  get('https://example.com').
  then(({body, headers}) => {
    console.log("body:", body);
    console.log("content-type:", headers['Content-Type']);
  });
```

---
_Source: https://npm.io/package/any-http-reqwest · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
