A Vue2 Input Streaming RealTime And two way data binding broadcasting with Pusher
# Git Clone Project
git clone [email protected]:aofdev/vue-input-streaming.git
# CD project
cd vue-input-streaming
# install dependencies project
npm install || yarn install
# CD folder server-app
cd server-app
# install dependencies
npm install
Create a new project or click on an existing project. Pusher Console
insert key At folder/file server-app/app.js
const pusher = new Pusher({
appId: '',
key: '',
secret: '',
cluster: '',
encrypted: true
});
insert key At file Input.vue
const pusher = new Pusher('', {
cluster: '',
encrypted: true
});
# run server app
node app
# run project app
npm run dev || yarn dev
# build for production with minification and to build Progressive Web Apps
npm run build || yarn build