GithubHelp home page GithubHelp logo

laravel-echo-server's Introduction

local-echo-server

Laravel Socket.io server

Install

cd local-echo-server
...\local-echo-server>npm install

Run server

...\local-echo-server>npm start
L A R A V E L  E C H O  S E R V E R

version 1.6.2

⚠ Starting server in DEV mode...

✔  Running at localhost on port 6001
✔  Channels are ready.
✔  Listening for http events...
✔  Listening for redis events...

Server ready!

Implementation

Use laravel-echo with socket.io-client

  1. Install laravel-echo
npm install laravel-echo
  1. Install socket.io-client
npm install socket.io-client
  1. Sample implementation
import Echo from "laravel-echo"

window.io = require('socket.io-client');

window.Echo = new Echo({
    broadcaster: 'socket.io',
    host: 'localhost:6001'
});

Implement with 2.3_03

As a captain, I want to receive a notification from the system when my verification is successful. The admin will be notified of my respective email address.

window.Echo.private('captain.notifications.'+user_id)
    .listen('captain.email.verified', e => {
		
		// e = payload
		// push e in bell array
		
	})

Implement with 2.3_04

As an Admin, I want to receive a notification from the system of the captain’s respective email address when a captain email verification is successful.

window.Echo.private('admin.notifications.'+user_id)
    .listen('captain.email.verified', e => {
		
		// e = payload
		// push e in bell array
		
	})

laravel-echo-server's People

Contributors

sly14flores avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.