Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nadeesha/nemo-connector

Connector for nemo plugins.
https://github.com/nadeesha/nemo-connector

Last synced: 4 days ago
JSON representation

Connector for nemo plugins.

Awesome Lists containing this project

README

        

This is a connector to the nemo backend.

```js
import Connector from 'nemo-connector';
const connector = new Connector();
```

## Sending scores

Returns a `Promise`

```js
connector.addScores({
eventId: i * 2,
timestamp: Date.now(),
score: i * 10,
pluginId: 'fake',
personId: 'fake',
})
```