0.0.9 • Published 6 years ago

@lessworkjs/pusher v0.0.9

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

Lessworkjs/Adonisjs Pusher

This is a pusher provider for the lessworkjs and adonisjs frameworks.

Installation

npm i @lessworkjs/pusher

Register the provider and alias in your config/app.js file.

const providers = [
  ...
  '@lessworkjs/pusher/providers/PusherProvider',
];

Create config/pusher.js

module.exports = {
  appId: env('PUSHER_APP_ID'),
  key: env('PUSHER_APP_KEY'),
  secret: env('PUSHER_APP_SECRET'),
  cluster: env('PUSHER_APP_CLUSTER')
};

Define the settings above in your .env

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET= 
PUSHER_APP_CLUSTER=

Usage

See pusher for full usage information.

const Pusher = use('Pusher');

Pusher.trigger('channel-1', 'test_event', { message: "hello world" });
0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.5

6 years ago