Skip to content

Instantly share code, notes, and snippets.

View totoro0103's full-sized avatar

Steven Phan totoro0103

View GitHub Profile
@totoro0103
totoro0103 / socket.service.js
Created July 8, 2022 04:06 — forked from kingcody/socket.service.js
socket.io service for angular-fullstack
/* global io */
'use strict';
angular.module('testFullstackApp')
.factory('socket', function(socketFactory) {
// socket.io now auto-configures its connection when we ommit a connection url
var ioSocket = io('', {
// Send auth token on connection, you will need to DI the Auth service above
// 'query': 'token=' + Auth.getToken()