Instructor: Andrew Burgess
AngularJS is an amazing front-end framework that has a very novel approach to building web applications, completely unlike any of the other frameworks you might be used to. In this course, we'll take a look at all the core components of Angular, and how they work together to build a complete application. We'll be building an address book: Starting from nothing at all, and ending up with a complete, working project. The focus of the course will be on Angular, but we'll use Express for the back-end code.
Source files for the Tuts+ course: Building a Web App From Scratch With AngularJS
Download the project from GitHub.
It is assumed that you have already install node and bower. There are a couple of other compontents that you need to install.
You should have a ~/.bowerrc file. If it does not exist, create it.
The content should be something like this:
{
"directory": "public/lib"
}
- cd <folder to install in>
- mkdir contacts
- cd contacts
- npm install express
- bower install angular
- bower install bootstrap
Coming soon to Tuts+