Angular Seed Project

<https://github.com/angular/angular-seed>

What is it?

  • An Application Skeleton
  • Used to quickly bootstrap a project/dev environment

What's Inside?

  • contains a sample Angular JS Application skeleton
  • Used to quickly bootstrap an angular webapp project and dev environment
  • pre-configured to install the Angular framework
  • pre-configured to install a bunch of development and testing tools.
  • the sample app serves as an example.  It Doesn't really do anything.

Directory Structure

View<1...2> directories represent features.
Presentation, Logic, and Tests are co-located per reccomendations
Unit tests are named a little differently in the examples I've seen.

Only Run Once to Generate

The `depth=1` option tells git to only pull down one commit worth of historical data.

git clone --depth=1 https://github.com/angular/angular-seed.git <your-project-name>

Then...Install Dependencies

npm install
**bower apparently runs behind the scenes

Angular Seed

By lbowman

Angular Seed

Gives a brief overview of the Angular Seed project, and how this relates to our interest in AngularJS folder/file organization.

  • 628