1.0.2 • Published 6 years ago

laravel-echo-umd v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Laravel Echo UMD

Laravel Echo as a UMD package. Needed this for use in an ES5 project.

Installing

npm i --save laravel-echo-umd

Usage

Include the node_modules/laravel-echo-umd/dist/echo.js file in your app however you want, and Echo will be available globally.

You can use it like

window.echo = new Echo(config);

// later on...
echo
  .channel('orders')
  .listen('OrderShipped', function (e) {
    console.log(e.order.name);
  });
1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago