This project is an application skeleton for a simple AngularJS app. You can use it to bootstrap you AngularJS web application projects in Visual Studio environment.
This seed contains AngularJS libraries, test libraries and a bunch of scripts all preconfigured for instant web development gratification. Just clone the repo (or download the zip/tarball), open it in Visual Studio 2012 and you are ready to develop and test your web application.
This seed doesn't do much, just shows how to write two controllers and views together. You can check it out by running App project in Visual Studio.
- AngularJS MV* family JavaScript Framework
- ASP.NET Web Api library for building RESTful services
- ASP.NET Web Pages adds Razor syntax to your HTML views
- ASP.NET Web Optimization Framework bundles and minifies JavaScript/CSS files
- TypeScript adds static typing to JavaScript and better IDE goodies
- LESS CSS extends CSS with dynamic behavior
- Visual Studio 2012 with Update 2 and extensions:
- NuGet Package Manager
- Web Tools 2012.2
- Web Essentials 2012
- TypeScript
Hint: make sure that you have the latest version and updates for Visual Studio and required extensions installed
Clone the angular-vs repository and start hacking...
When you open this porject in Visual Studio for the first time, right-click on the solution in solution explorer, then in the context menu select Manage NuGet Packages and in the opened dialog click Restore Packages. This way all the referenced libraries are going to be downloaded into the project's folder from nuget.org
-
Why this project doesn't use ASP.NET MVC?
If you're building a single page application (SPA), you're already using an MVC framework, no need to use both. You still can use routing and web pages (.cshtml) with Razor syntax for your views.
-
Why it doesn't use ServiceStack?
There is no tight dependency on ASP.NET Web Api, you can easily replace it with ServiceStack if you want to, though keep in mind that with Web Api you have a better degree of configurability and control over your RESTful services.
- Add angular.d.ts
- Setup and configure unit and e2e tests
Please check out AngularJS forums or drop me an email at [email protected]