{"id":16185268,"url":"https://github.com/davemo/end-to-end-with-angularjs","last_synced_at":"2025-10-24T16:53:46.084Z","repository":{"id":8518589,"uuid":"10132558","full_name":"davemo/end-to-end-with-angularjs","owner":"davemo","description":"An intermediate/advanced look at how to use Angular JS in conjunction with a server-side.","archived":false,"fork":false,"pushed_at":"2021-11-20T00:56:37.000Z","size":512,"stargazers_count":442,"open_issues_count":0,"forks_count":113,"subscribers_count":40,"default_branch":"main","last_synced_at":"2025-03-29T12:09:09.594Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davemo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-05-17T21:33:14.000Z","updated_at":"2025-01-02T01:11:08.000Z","dependencies_parsed_at":"2022-09-07T20:20:48.003Z","dependency_job_id":null,"html_url":"https://github.com/davemo/end-to-end-with-angularjs","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davemo%2Fend-to-end-with-angularjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davemo%2Fend-to-end-with-angularjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davemo%2Fend-to-end-with-angularjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davemo%2Fend-to-end-with-angularjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davemo","download_url":"https://codeload.github.com/davemo/end-to-end-with-angularjs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247339158,"owners_count":20923014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-10T07:13:54.180Z","updated_at":"2025-10-11T19:38:47.186Z","avatar_url":"https://github.com/davemo.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"end-to-end-with-angularjs\n==================\n\nThis repository covers material in 2 screencasts, \n* [End to End with Angular JS](http://www.youtube.com/watch?v=hqAyiqUs93c) \n* [Security with Angular JS](http://www.youtube.com/watch?v=18ifoT-Id54)\n\nThis is an extension of my screencast [Intro to Angular JS](http://www.youtube.com/watch?v=8ILQOFAgaXE) that focuses more on intermediate/advanced topics and walks through creating a working web application on top of the Laravel 4 Web Application Framework. \n\nThings you can expect to learn from **End to End with Angular JS**:\n\n* $http\n* $rootScope\n* taking the [AuthenticationService](https://github.com/davemo/intro-to-angularjs/blob/master/app/js/app.js#L19) we built earlier end-to-end\n* creating a FlashService for displaying alerts to users\n* access control for client-side routes with $rootScope and $routeProvider\n* $httpProvider.responseInterceptors and logging out users automatically if serverside sessions expire\n* $routeProvider.resolve property and making view rendering data dependent\n* laravel 4 migrations, controllers, models, and authentication\n\nThings you can expect to learn from **Security with Angular JS**:\n\n* 3 common-sense ways to secure your web application\n* angular.constant\n* ng-init\n* ng-sanitize\n* Laravel CSRF support, route filters, and built in protection\n\n## Requirements:\n\n* [Laravel 4](http://four.laravel.com/)\n* PHP 5.4 or higher\n* MCrypt\n* MySQL or SQLite\n* [AngularJS 1.1.4](https://ajax.googleapis.com/ajax/libs/angularjs/1.1.4/angular.js)\n\n## Prerequisite Installation Instructions:\n\nInstalling PHP 5.4 and MCrypt is the most tedious part of getting up and running with this example, but Laravel 4 is so nice that I think it's worth it. Here's the basic instructions for getting up on Mac OS X:\n\n1. Install [Homebrew](http://mxcl.github.io/homebrew/)\n2. Make sure you correct any problems that `brew doctor` detects\n3. Install [Laravel 4](http://laravel.com/docs/quick)\n4. Tap the PHP keg from @josegonzalez: `brew tap josegonzalez/php`\n5. Install PHP 5.4 `brew install php55`\n6. Install MCrypt `brew install php55-mcrypt` (this will automatically link the binary into the php.ini for you)\n7. Install [Composer](http://getcomposer.org/) `brew install composer` (think of it like homebrew, or npm, or apt-get, but for PHP modules)\n\n## App Installation Instructions:\n\n1. clone this repo: `git clone https://github.com/davemo/end-to-end-with-angularjs.git`\n2. install composer dependencies `composer install`\n3. create a database called `laravelapp`\n4. create your unique security key `php artisan key:generate`\n5. run database migrations `php artisan migrate`\n6. seed the database `php artisan db:seed`\n7. run the app `php artisan serve`\n8. browse to `http://localhost:8000` and log in with email `admin@example.org` and password `admin`\n\nOnce you have the app up and running you can visit `http://localhost:8000` and you will see the Login Form.\n\nIf you liked this code and screencast you should follow me on twitter: [@dmosher](http://www.twitter.com/dmosher)\n\nHappy Coding! :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavemo%2Fend-to-end-with-angularjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavemo%2Fend-to-end-with-angularjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavemo%2Fend-to-end-with-angularjs/lists"}