noisim / ss-event
This library provides Server Sent Event for Laravel.
Installs: 11 357
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- illuminate/support: ^5.5
- tonyhhyip/sse: ^2.1
This package is auto-updated.
Last update: 2025-03-28 00:57:29 UTC
README
This library provides Server Sent Event for Laravel. Tested on Laravel 5.5.
How to use
This package is installed via Composer. To install, simply add it
to your composer.json
file:
{ "require": { "noisim/ss-event": "dev-master" } }
and run composer to update the dependencies composer update
.
Then open your Laravel config file config/app.php and in the $providers
array add the service provider for this package.
\Noisim\SSEvent\SSEventServiceProvider::class
Finally generate the configuration file running in the console:
php artisan vendor:publish --tag=config
Laravel Controller:
<?php namespace App\Http\Controllers; use Noisim\SSEvent\SSEvent; class TestController extends Controller { public function test() { $sse = new SSEvent(); return $sse->sleepTime(10)->addEvent("event_name", function () { return json_encode(["hello" => "world"]); })->start(); } }
Laravel Route:
<?php Route::get('test', 'TestController@test')->name("test");
Client Javascript:
var source = new EventSource('/test'); source.addEventListener('event_name', function(event) { console.log(event); }, false);