# msda-http-request-helper

> standard client for msda apis

Latest version **0.0.8** (published 2016-02-15) · 0 weekly downloads

## Install

```sh
npm install msda-http-request-helper
pnpm add msda-http-request-helper
yarn add msda-http-request-helper
bun add msda-http-request-helper
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.8 |
| Published | 2016-02-15 |
| First published | 2015-08-11 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Levan Basharuli |
| Maintainers | levansuper |

## Links

- npm: https://www.npmjs.com/package/msda-http-request-helper
- npm.io page: https://npm.io/package/msda-http-request-helper

## Dependencies (2)

- [request](https://npm.io/package/request.md) 2.69.0
- [msda-clients-error-codes](https://npm.io/package/msda-clients-error-codes.md) latest

## Recent versions

- 0.0.8 (latest) — 2016-02-15
- 0.0.7 — 2016-01-28
- 0.0.6 — 2015-09-27
- 0.0.5 — 2015-09-25
- 0.0.4 — 2015-09-23
- 0.0.3 — 2015-08-14
- 0.0.2 — 2015-08-11

## README

#Http Request Helper For MSDA APIs

#config
```js
var HttpRequestHelper = require("msda-http-request-helper");
var hrh = new HttpRequestHelper({
    host: 'apiHost',
    port: '80',
    path: '/api/'
});
```

#making a call 
```js
var jsonParam = {
    a: 1,
    b: 2,
    c: {d: 3}
};
hrh.request("SomeMEthodName", jsonParam, function(err, res) {
    console.log(err, res);
});
```

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