A progressive web app example for using vue-remote and quasar
# install dependencies
$ npm install
# start websocket server to handle chat passthrough
$ node server.js
# serve with hot reload at localhost:8080
$ npm run dev
If you are looking to test on a remote system you just need to run the server.js on your remote system and change main.js from
Vue.use(VueRemote,
{
secure: false,
host: 'localhost',
port: 8081
}
)
to reflect the target system. Finally run the dev on multiple systems or build and distribute.
Navigate to http://localhost:8080
type in a username and begin chatting.
There is not any form of username security as this is an example.