Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/spacebro/spacebro2-client
- Owner: spacebro
- Created: 2020-04-09T15:25:26.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-30T06:59:06.000Z (over 3 years ago)
- Last Synced: 2024-11-21T04:11:39.905Z (2 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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)
```