-
Notifications
You must be signed in to change notification settings - Fork 120
command line
Lance Pollard edited this page Sep 26, 2012
·
1 revision
- https://github.com/eldargab/easy-table
- https://github.com/substack/node-charm
- https://github.com/bestiejs/platform.js/
- https://github.com/wdavidw/node-csv-parser
- https://github.com/chjj/marked
- https://github.com/jdarling/MongoMQ
- https://github.com/jdarling/MongoMQ
- https://github.com/sdepold/sequelize
- https://github.com/shapeshed/connect-force-domain
- https://github.com/ForbesLindesay/connect-roles
- https://github.com/mhemesath/express-chromeframe
- https://github.com/jnunemaker/httparty
- https://github.com/fog/fog/blob/master/lib/fog/aws/dynamodb.rb
class Tower.Service extends Ember.Object
Tower.Service.get('collections') # the different database tables, directories, volumes, zones, etc.
class Tower.TwitterService extends Tower.Service
Tower.TwitterService.get('collections') # api methods
service = Tower.TwitterService.create()
# raw api methods
service.request
# model methods
service.find('users')
service.create('tweets', text: 'asdf')
service.get('tweets').create()
- https://github.com/LearnBoost/socket.io/wiki/Authorizing
- https://github.com/kazuyukitanimura/session-web-sockets
- http://stackoverflow.com/questions/4641053/socket-io-and-session
- http://www.danielbaulig.de/socket-ioexpress/
- http://stackoverflow.com/questions/4753957/socket-io-authentication/4782933#4782933
- use redis store: http://iamtherockstar.com/blog/2012/02/14/nodejs-and-socketio-authentication-all-way-down/
- https://github.com/visionmedia/connect-redis
- http://www.quora.com/How-do-I-scale-socket-io-servers-2
- http://stackoverflow.com/questions/6806263/websocket-api-to-replace-rest-api
- http://blog.joshsoftware.com/2012/01/30/push-notifications-using-express-js-and-socket-io/
- http://net.tutsplus.com/tutorials/javascript-ajax/how-to-create-a-resumable-video-uploade-in-node-js/
- https://github.com/thirtysixthspan/waterunderice
- http://www.websocket.org/quantum.html
- http://howtonode.org/websockets-socketio
- http://jsperf.com/websocketvsxhr
- https://github.com/leostera/AJAXvsWS
With web sockets:
- don't have to parse the headers for each request (only if new headers are added)
- don't have to parse domain, host, protocol (since they won't change)
- do have to parse the url and query params every time still
- don't have to parse the session or cookies for each request
- don't have to re-authenticate the currentUser every request
- don't have to instantiate a controller for every request (beyond just the first one)