Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.