# tynee-client

> A Node.js implementation of a Tynee microservice client

Latest version **0.0.2** (published 2016-05-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install tynee-client
pnpm add tynee-client
yarn add tynee-client
bun add tynee-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.0.2 |
| Published | 2016-05-19 |
| First published | 2016-05-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Known vulnerabilities | 0 (+2 in 2 direct dependencies) |
| Install scripts | no |
| Author | Paul O'Fallon |
| Maintainers | pofallon |
| Keywords | microservices |

## Links

- npm: https://www.npmjs.com/package/tynee-client
- Repository: https://github.com/tynee/node-tynee-client
- Issues: https://github.com/tynee/node-tynee-client/issues
- npm.io page: https://npm.io/package/tynee-client

## Dependencies (7)

- [async](https://npm.io/package/async.md) ^2.0.0-rc.3
- [debug](https://npm.io/package/debug.md) ^2.2.0
- [redis](https://npm.io/package/redis.md) ^2.6.0-1
- [lodash](https://npm.io/package/lodash.md) ^4.9.0
- [semver](https://npm.io/package/semver.md) ^5.1.0
- [request](https://npm.io/package/request.md) ^2.71.0
- [node-uuid](https://npm.io/package/node-uuid.md) ^1.4.7

## Recent versions

- 0.0.2 (latest) — 2016-05-19
- 0.0.1 — 2016-05-02

## README

# node-tynee-client
A Node.js implementation of a Tynee microservice client

[![Build Status](https://travis-ci.org/Tynee/node-tynee-client.svg?branch=master)](https://travis-ci.org/Tynee/node-tynee-client)

** Currently under development **

```
var Client = require('tynee-client');

var client = new Client({
  redis: { port: 32768 },
  dependencies: {
    name: 'incrementer',
    version: '1.0.0'
  }
});

client.on('ready', function() {
  client.invoke({
    name: 'incrementer',
    body: 1
  }, function(err, results) {
    if (err) {
      console.log('Error: ' + err);
    } else {
      console.log(results.body);
    }
    client.close();
  });
});
```

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