Upgrade to Pro — share decks privately, control downloads, hide ads and more …

AngularJS + REST: Made Simple

Hassan
August 24, 2016

AngularJS + REST: Made Simple

This talk will introduce how to utilize Angular and REST to build modular websites that provide the responsiveness which drives the web today.

Hassan

August 24, 2016
Tweet

Other Decks in Technology

Transcript

  1. Who Is This Hassan Guy?! Software engineer for 15+ years.

    Held corporate & Government contracting positions. C/C++, Java, PHP, Python, Javascript, etc. VioDrive
  2. Environment Dependencies Nodejs Event-driven I/O server-side JavaScript environment based on

    V8. https://nodejs.org/en/ Npm Package manager. Installs, publishes and manages node programs. https://www.npmjs.com/ Angular-seed Seed project for angular apps. This will help create the foundation of your project. https://github.com/angular/angular-seed ngResource A factory which creates a resource object that lets you interact with RESTful APIs. https://docs.angularjs.org/api/ngResource/service/$resource
  3. Test RESTful API JSONPlaceholder Fake Online REST API for Testing

    and Prototyping No authentication needed. https://jsonplaceholder.typicode.com/ Resources /posts /comments /albums /photos /todos /users
  4. The Angular App angularRest/app.js ** This “Post” factory creates the

    interface to interact with the RESTful API end-point. **