All Projects → oguzbilgic → pusher

oguzbilgic / pusher

Licence: MIT license
Pusher client library for Go

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to pusher

Hyperledger Typescript Boilerplate
This is a boilerplate that interacts between Hyperledger Fabric Peers and a front end.
Stars: ✭ 109 (+626.67%)
Mutual labels:  pusher
Vue Echo
Vue integration for the Laravel Echo library.
Stars: ✭ 229 (+1426.67%)
Mutual labels:  pusher
chatkit-server-node
Node.js SDK for Pusher Chatkit
Stars: ✭ 16 (+6.67%)
Mutual labels:  pusher
Pusher Fake
A fake Pusher server for development and testing.
Stars: ✭ 148 (+886.67%)
Mutual labels:  pusher
Chatify Demo
Chatify Laravel Package Demo application
Stars: ✭ 189 (+1160%)
Mutual labels:  pusher
coebot-www
A web interface for CoeBot, a Twitch chat bot
Stars: ✭ 12 (-20%)
Mutual labels:  pusher
Trello Clone Vue Laravel
This is a Trello clone built using Laravel and Vue. You can read about how it was created in the series.
Stars: ✭ 88 (+486.67%)
Mutual labels:  pusher
python-realtime-table
Building realtime table using Python and Channels
Stars: ✭ 12 (-20%)
Mutual labels:  pusher
Webhook.site
⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
Stars: ✭ 2,842 (+18846.67%)
Mutual labels:  pusher
devto-scheduler
Live appointment scheduling, created for dev.to contest. Video: https://youtu.be/LT6YtcJ6dZI
Stars: ✭ 32 (+113.33%)
Mutual labels:  pusher
Dashboard.spatie.be
The source code of dashboard.spatie.be
Stars: ✭ 1,916 (+12673.33%)
Mutual labels:  pusher
Gateway
🚀构建分布式即时聊天、消息推送系统。 Building distributed instant messaging, push notification systems.
Stars: ✭ 188 (+1153.33%)
Mutual labels:  pusher
octopub
Publish data easily, quickly and correctly
Stars: ✭ 41 (+173.33%)
Mutual labels:  pusher
Ember Socket Guru
Addon for easy integration with Pusher.js, ActionCable, Socket.io and Phoenix Channels
Stars: ✭ 119 (+693.33%)
Mutual labels:  pusher
project-manager-laravel
Project manager system - PHP and AngularJS
Stars: ✭ 17 (+13.33%)
Mutual labels:  pusher
React Slack Clone
Complete chat application, built with Chatkit | by @lukejacksonn
Stars: ✭ 1,306 (+8606.67%)
Mutual labels:  pusher
Pusher Angular
Pusher Angular Library | [email protected]
Stars: ✭ 233 (+1453.33%)
Mutual labels:  pusher
chatkit-swift
Swift SDK for Pusher Chatkit
Stars: ✭ 40 (+166.67%)
Mutual labels:  pusher
pusher-for-codeigniter
CodeIgniter library for Pusher PHP SDK
Stars: ✭ 27 (+80%)
Mutual labels:  pusher
food-delivery-ios-app
A food delivery application built using Swift for iOS. The application uses Pushers notifications feature to send push notifications to mobile devices.
Stars: ✭ 36 (+140%)
Mutual labels:  pusher

Pusher Build Status

Package pusher implements client library for pusher.com

Usage

package main

import (
	"github.com/oguzbilgic/pusher"
)

func main() {
	conn, err := pusher.New("d05049c57n3ielfhfh82")
	if err != nil {
		panic(err)
	}

	chatRoomChan := conn.Channel("chat_room")
	messages := chatRoomChan.Bind("new_message")

	for {
		msg := <-messages

		println(msg.(string))
	}
}

Documentation

http://godoc.org/github.com/oguzbilgic/pusher

License

The MIT License (MIT)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].