Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nadeesha/nemo-connector
- Owner: nadeesha
- Created: 2016-03-30T04:46:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-22T05:01:55.000Z (over 8 years ago)
- Last Synced: 2024-04-22T14:23:32.083Z (7 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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',
})
```