Created
September 6, 2012 05:07
-
-
Save guerrerocarlos/3651490 to your computer and use it in GitHub Desktop.
loading socket.io using require.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Require.js allows us to configure shortcut alias | |
require.config({ | |
// The shim config allows us to configure dependencies for | |
// scripts that do not call define() to register a module | |
shim: { | |
'socketio': { | |
exports: 'io' | |
}, | |
'underscore': { | |
exports: '_' | |
}, | |
'backbone': { | |
deps: [ | |
'underscore', | |
'jquery' | |
], | |
exports: 'Backbone' | |
} | |
}, | |
paths: { | |
jquery: 'jquery.min', | |
underscore: 'lodash.min', | |
backbone: 'backbone', | |
socketio: '../socket.io/socket.io', | |
} | |
}); | |
define([ | |
'jquery', | |
'backbone', | |
'socketio', | |
], function( $, Backbone, io ) { | |
var socket = io.connect('http://localhost'); | |
socket.on('news', function (data) { | |
console.log(data); | |
socket.emit('my other event', { my: 'data' }); | |
}); | |
//Ready to write Backbone Models and Socket.io communication protocol in here :) | |
}); |
great! Thanks very much!
Thanks!! ><
yup, thanks!
thanks 😄
thanks a lot for this tip!!!
Thanks! Fixed my issue.
Thank you.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks !! Solved my issue!