Michael Jaser
Michael Jaser
**Example** `node app.js --myBool true` results in `nconf.get('myBool') // 'true'` I think converting boolean-string to real booleans would be nice, because that's what you are expecting - i think the...
Sometime it's useful to catch some known errors and convert them to erroz-errors. Unfortunately those errorz-erros have the stacktrace of erroz-creation. It might be helpful to add an option to...
## writeables There are attributes which only make sense on client OR server. Those attributes should not be send over the wire on save/update calls. Sending them might cause the...
A validator request should take the same path as a service request and apply all schema-setters and middleware the service applies. If you've got a service request with some middleware...
- check local & remote validators - signatures of the callbacks (err, res) etc.
The current concept is not perfect and lacks flexibility. I'm thinking of making it easier and more pub-sub-link. ## Ideas https://github.com/LearnBoost/socket.io/wiki/Rooms ### PubSub ``` javascript socket.on('subscribe', function(data) { socket.join(data.room); })...
We are currently using the auto-detect feature of socket.io via `io.connect();`. This might cause problems if you are hosting the client at port 80 separately and the websocket-server at a...
Which browsers should be supported with the release of v1? Desktop: Chrome ? Firefox > 6 Safari > 6 Internet Explorer > 8 Opera > 5 Mobile: iOS > 3.0...
It should be possible to install only certain parts of alamid. - Data-Layer - Presentation-Layer - Bundler - Scaffolding and/or special transports - SPDY - Websockets We need a concept...
It's a pain in the ass if you are waiting for a validator-function which never returns. I'll add a timeout which can be disabled or set the way mocha handles...