# ricpa-client

> RICPA Client, client for Remote Chess Engine, implemented following RICPA protocol

Latest version **0.3.1** (published 2021-04-13) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install ricpa-client
pnpm add ricpa-client
yarn add ricpa-client
bun add ricpa-client
```

## 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.3.1 |
| Published | 2021-04-13 |
| First published | 2018-08-15 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 18.8 KB |
| Known vulnerabilities | 0 (+23 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Mikhail Subach |
| Maintainers | scorpibear |
| Keywords | chess, chess engine, engine, RICPA, client, remote chess engine, uci alternative |

## Links

- npm: https://www.npmjs.com/package/ricpa-client
- Repository: https://github.com/Scorpibear/ricpa-client
- Homepage: https://github.com/Scorpibear/ricpa-client#readme
- Issues: https://github.com/Scorpibear/ricpa-client/issues
- npm.io page: https://npm.io/package/ricpa-client

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^0.21.1

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 0.3.1 (latest) — 2021-04-13
- 0.3.0 — 2019-09-06
- 0.2.1 — 2018-09-13
- 0.2.0 — 2018-09-11
- 0.1.0 — 2018-08-15

## README

# RICPA client
[![Build Status](https://travis-ci.org/Scorpibear/ricpa-client.svg?branch=master)](https://travis-ci.org/Scorpibear/ricpa-client)
[![Coverage Status](https://codecov.io/gh/Scorpibear/ricpa-client/branch/master/graph/badge.svg)](https://codecov.io/gh/Scorpibear/ricpa-client)
[![npm version](https://badge.fury.io/js/ricpa-client.svg)](https://www.npmjs.com/package/ricpa-client)

RICPA client, client for Remote Chess Engine, implemented following RICPA protocol

## Install
```
npm install ricpa-client --save
```

## Examples of usage
```javascript
const Client = require('ricpa-client');
const client = new Client('http://hostname:port/api');
const itemList = client.getQueue();
client.postFen({fen, depth});
const {fen, depth, bestMove, score, placeInQueue, estimatedTime} = client.getFen({fen, depth});
```

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