Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
evantahler committed May 9, 2013
1 parent 58d7b20 commit 5d9a709
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
4 changes: 3 additions & 1 deletion servers/web.js
Expand Up @@ -18,7 +18,9 @@ var web = function(api, options, next){
logConnections: false,
logExits: false,
sendWelcomeMessage: false,
verbs: []
verbs: [
// no verbs for connections of this type, as they are to be very short-lived
]
}

var server = new api.genericServer(type, options, attributes);
Expand Down
20 changes: 19 additions & 1 deletion versions.md
@@ -1,7 +1,25 @@
# Action Hero API Versions

## Version 5.2.0
??????????????????????

** Modular & Prototypical Servers **

- "engines" for servers
- all "sever-specific" logic moved only into servers; no more "if type == 'web'" shenanigans
- you can make your own
- config.js chnges
- prototypical server which must be extended
- preparing to seperate into seperate NPM packages
- connections have "verbs"
- optional to use
- homogenized between all server types
- you can't use thier names in actions
- server types renamed to "web", "socket", "websocket" for claricy
- serer types can have options about chatting and such

** Other **

- speed improvments and tests added for the stats module (thanks @jacobbubu)

## Version 5.1.3

Expand Down

0 comments on commit 5d9a709

Please sign in to comment.