Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/spacebro/spacebro2-client

work in progress — the new spacebro client
https://github.com/spacebro/spacebro2-client

Last synced: 3 days ago
JSON representation

work in progress — the new spacebro client

Awesome Lists containing this project

README

        

# spacebro2-client

### Example connection

```js
'use strict'

const client = require('spacebro2-client')

client.setup({ name: 'client-name' })

client.on('image-event', (data, from) => {
console.log(`received ${data} from ${from}`)
})

setTimeout(() => {
client.emit('test-event', 'hello world')
client.emit('sendto-event', 'hello again', 'other-client-name')
}, 2000)
```