# qmerce-frontend

> Qmerce Frontend API

Latest version **0.1.2** (published 2016-04-21) · MIT license · 0 weekly downloads

## Install

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

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

## Links

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

## Dependencies (2)

- [qmerce-rest](https://npm.io/package/qmerce-rest.md) ^0.1.1
- [querystring](https://npm.io/package/querystring.md) *

## 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.2 (latest) — 2016-04-21

## README

qmerce-frontend
===============

NodeJS wrapper for the Qmerce Frontend API

## Installation

  npm install qmerce-frontend --save

## Usage

```javascript
const FrontendAPI = require('qmerce-frontend');
const api = new FrontendAPI(URL, { user: USER, password: PASSWORD });

api.createCart()
.then((cart) => {
	console.log("created cart " + cart.id);
	return cart.addItem({ 
		productId: "productId",
		quantity: 2
	});
})
.catch((err) => console.log(err));
```

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