
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
vue-spacebro-client
Advanced tools
spacebro-client implementation for Vuejs 2 and Vuex
npm install vue-spacebro-client --save
Automatic spacebro connection from a config object
import VueSpacebroClient from 'vue-spacebro-client'
Vue.use(VueSpacebroClient, {
host: 'spacebro.space',
port: 3333,
channelName: 'media-stream'
client: {
name: 'vue-example',
description: 'exemple app',
in: {
inMedia: {
eventName: 'inMedia',
description: 'Input media',
type: 'all'
}
},
out: {
outMedia: {
eventName: 'outMedia',
description: 'Output media',
type: 'all'
}
}
}
})
Enable Vuex integration
import store from './yourstore'
Vue.use(VueSpacebroClient, config, store));
var vm = new Vue({
spacebroEvents: {
connect: function () {
console.log('spacebro connected')
},
inMedia: function (val) {
console.log('this method was fired by a message on spacebro. eg: spacebro.emit("newMedia", data)')
}
},
methods: {
clickButton: function(val){
// $spacebro is spacebro-client instance
this.$spacebro.emit(this.$spacebro.config.client.out.outMedia.eventName, val);
}
}
})
Create a new listener
this.$options.spacebroEvents.event_name = (data) => {
console.log(data)
}
Remove existing listener
delete this.$options.spacebroEvents.event_name;
spacebro mutations always have SPACEBRO_ prefix.
spacebro actions always have spacebro_ prefix and the spacebro event name is camelCased (ex. SPACEBRO_USER_MESSAGE => spacebro_userMessage)
You can use either one or another or both in your store. Namespaced modules are supported.
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex);
export default new Vuex.Store({
state: {
connect: false,
message: null
},
mutations:{
SPACEBRO_CONNECT: (state, status ) => {
state.connect = true;
},
SPACEBRO_USER_MESSAGE: (state, message) => {
state.message = message;
}
},
actions: {
otherAction: (context, type) => {
return true;
},
spacebro_userMessage: (context, message) => {
context.dispatch('newMessage', message);
context.commit('NEW_MESSAGE_RECEIVED', message);
if (message.is_important) {
context.dispatch('alertImportantMessage', message);
}
...
}
}
})
There is an example in electron-vue
To generate an example, do
npm install -g vue-cli
vue init soixantecircuits/electron-vue simple-electron-vue-spacebro
And select option to add spacebro-client in project.
This is largely based on MetinSeylan's awesome Vue-Socket.io
FAQs
spacebro-client implemantation for vuejs and vuex
The npm package vue-spacebro-client receives a total of 3 weekly downloads. As such, vue-spacebro-client popularity was classified as not popular.
We found that vue-spacebro-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.