https://github.com/spacebro/spacebro2-client
work in progress — the new spacebro client
https://github.com/spacebro/spacebro2-client
Last synced: about 2 months 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-30T06:59:06.000Z (about 5 years ago)
- Last Synced: 2026-01-01T23:18:29.474Z (6 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- 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)
```