SocketCluster / socketcluster-client

JavaScript client for SocketCluster
MIT License
292 stars 91 forks source link

bower package #7

Closed seiyria closed 9 years ago

seiyria commented 9 years ago

It'd be nice to have this on bower so those of us that don't use browserify could still install this.

jondubois commented 9 years ago

Note that you do not necessarily need browserify to install/use it. The latest standalone build is in https://github.com/TopCloud/socketcluster-client/blob/master/socketcluster.js Or minified: https://github.com/TopCloud/socketcluster-client/blob/master/socketcluster.min.js

^ You do need to wrap it in your own AMD define() block if you're using RequireJS though which is a bit tedious.

I will look into putting it on bower anyway to make the install process as convenient as possible.

seiyria commented 9 years ago

Sure, of course. I just mean, it's much, much easier to bower install socketcluster-client. Basic configuration is pretty easy.

Thanks a ton!

hedgepigdaniel commented 9 years ago

I'd also appreciate this - we use bower for client side package management where possible because it's flat dependency structure prevents us from having multiple versions of the same libraries and thereby making our JavaScript bundles unnecessarily big.

jondubois commented 9 years ago

Done