Boilerplate sliding view controller template based on Mike Enriquez's awesome ECSlidingViewController and Matt Gallagher's beautiful re-usable tableview article.
This also builds upon some 'best practices' I have used in the past to create modular and re-usable mobile apps for such as servicing layers, model mapping, and view-logic separation.
This application also has an accompanying localhost server that is written in Node to allow sandbox development and mock out service calls. The only functions implemented now are login and logout. The resources are as follows:
POST /session - Login user { username:'brad', password: 'secure' }
DELETE /session - Logout user
- Node - Node is an evented server side technology built in javascript (using Google's V8 engine). This is a very fast lightweight server-side technology and is rapidly becoming very popular.
Setup
- Get and install nvm (Node Version Manager)
- Run
nvm install v0.10.0
- In the base of the
Server
directory runnpm install
- Run
node app.js