To get you started you can simply clone the note-wrangler repo and install the dependencies:
You will need node.js installed to run this sample app, I recommend Node Version Manager. Check out the repo for installation directions: nvm github
npm, the node package manager.We have preconfigured the app using npm to automatically run bower so we can simply do:
npm install
This creates a node_modules folder which contains the npm packages installed in the previous step
We have preconfigured the project with a simple development web server. The simplest way to start this server is:
npm start
Now pull up your application at http://localhost:8000/. The default user is demo with a password of secret
npm run debug
This starts the app in debug mode which allows you you to use node-inspector
You can open another browser tab at: http://127.0.0.1:8080/debug?port=5858 to get to the web console.
For more information on AngularJS and other kick-butt languages check out Code School!