# qmerce-rest

> Qmerce REST API layer

Latest version **0.1.1** (published 2016-04-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install qmerce-rest
pnpm add qmerce-rest
yarn add qmerce-rest
bun add qmerce-rest
```

## 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.1 |
| Published | 2016-04-20 |
| First published | 2016-04-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Wolfgang Loch |
| Maintainers | wolfgangloch |
| Keywords | qmerce |

## Links

- npm: https://www.npmjs.com/package/qmerce-rest
- Repository: https://github.com/wolo/qmerce-rest
- Homepage: https://github.com/wolo/qmerce-rest#readme
- Issues: https://github.com/wolo/qmerce-rest/issues
- npm.io page: https://npm.io/package/qmerce-rest

## Dependencies (1)

- [request](https://npm.io/package/request.md) ^2.71.0

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 0.1.1 (latest) — 2016-04-20

## README

qmerce-rest
===========

A small library providing convenient methods to call a JSON-style REST API.

## Installation

  npm install qmerce-rest --save

## Usage

```javascript
const rest = require('qmerce-rest')
const api = rest(URL, { user: USER, password: PASSWORD });

api.getAsync()
.then((data) {
	data.counter++;
	return api.putAsync(data);
})
.then(() => api.deleteAsync())
.catch((err) => console.log(err));
```

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