SlideShare uma empresa Scribd logo
1 de 19
Baixar para ler offline
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |© 2011 Medullan, Inc. |© 2012. Prepared by Medullan, Inc. |
Ing. Jhon Samamé Gómez
Septiembre 10, 2013
Simple Page Web Applications
con
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Agenda
1. AngularJs: Qué es? Por qué
usarlo?
2. Expresiones y Directivas
3. Modulo
4. Enrutador
5. Controlador
6. Modelo
7. Simple Page Applications
8. Vistas Parciales
9. Comunicacion REST
10. Servicios
11. Demo
12.Recursos
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Qué y Por qué AngularJs?
• Open Source Javascript MVC Framework
(como Backbone.js, Ember.js)
• Mejora la Organizacion(Modulos y Servicios).
• Modelos POJO(Plain Old JavaScript Objects).
• Extiende el HTML(Directivas).
• Inyeccion de Dependencia.
• Facil de Testear (Mocking).
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Expresiones
• Usadas para pequeñas operaciones.
• Usadas como {{ expresion }}
• Dinamicas.
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Directivas (Directives)
• Usadas para grandes operaciones.
• Extienden el HTML.
• Permiten crear componentes.
• Comunes: ng-model, ng-repeat, ng-switch,
etc.
http://bit.ly/15MQt2E
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Componentes (Basico)
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Componentes (Orden de Implementacion)
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Modulo
• Aplicaciones organizadas en modulos.
• Pueden depender de otros modulos.
• Contienen controladores, directivas, filtros,
servicios, etc.
• angular.module(…)
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Enrutador
• Configuracion de las rutas de nuestra
aplicacion web.
• Asocia la Url a una vista parcial y un
controlador especifico.
• $routeProvider.
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Controlador
• Definen el comportamiento.
• Construyen el modelo que sera renderizado
en la vista parcial.
• No deben contener acceso a la UI.
• Se comunican con la vista a traves del
objeto $scope.
• angular.controller(…)
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Modelo
• Propiedad del $scope dentro del
controlador.
• Cada vez que cambia, actualiza la vista.
• Puede ser enlazado a la UI (textbox, labels,
etc).
• $scope.miModelo = [{…}];
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Simple Page Applications
• SPA o SPI (Interface)
• Mejoran la experiencia del usuario
(desktop).
• Habilidad de cambiar la UI sin obtener el
HTML desde el servidor nuevamente.
• JSON, Ajax, REST,etc.
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Vistas Parciales
• Porcion de HTML que es embebido.
• Se cargan dinamicamente (Ajax).
• Generalmente asociadas a un Controlador.
• Renderizan informacion del Modelo.
• Son mantenidas en memoria por el
explorador como templates.
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
REST
• Representational State Transfer.
• Usa HTTP simple.
• GET and POST convencionales.
• GET/POST/PUT/DELETE.
• Simple CRUD llevado a la web.
• Autenticacion antes de ejecutar.
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Servicios en AngularJS
• Fabricas de objetos reusables.
• Usa la Inyeccion de Dependencia.
• Son inyectados al Controlador.
• Faciles de testear.
• Usados para obtener los datos desde el
servidor y que seran transformados en el
Modelo.
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Demo
• Servidor: nodeJs, ExpressJs
• Cliente: Simple HTML, Vistas Parciales,
AngularJS.
• Modulo, Enrutador, Vistas Parciales,
Controladores, Servicios.
• Interface REST simple en NodeJs.
(GET/POST)
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Recursos
•http://angularjs.org/
•https://plus.google.com/u/0/+AngularJS/posts
•http://tecnimedios.com/blog/programacion/jquery/single-
page-application-spa-una-tendencia-creciente/
•http://expressjs.com/guide.html
•http://nodejs.org/
•http://jhonpierre.blogspot.com/
•https://jhonpierre.wordpress.com/
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Medullan
• Soluciones a medida.
• Rubro: Cuidado de la Salud, Bienestar Social.
• Career Manager. Ultimas Tecnologias.
• Developer, Project Manager, QA Tester.
• Trinidad y Tobago / USA.
• Visita http://medullan.com/
• CV a careers@medullan.com
• O a jsamame@medullan.com
© 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |
Gracias

Mais conteúdo relacionado

Mais procurados

Introducing Pebble SDK 2.0
Introducing Pebble SDK 2.0Introducing Pebble SDK 2.0
Introducing Pebble SDK 2.0
Cherie Williams
 
AngularJS = Browser applications on steroids
AngularJS = Browser applications on steroidsAngularJS = Browser applications on steroids
AngularJS = Browser applications on steroids
Maurice De Beijer [MVP]
 

Mais procurados (20)

What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...
What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...
What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...
 
Angular App Presentation
Angular App PresentationAngular App Presentation
Angular App Presentation
 
AngularJS
AngularJSAngularJS
AngularJS
 
Mastering angular - Dot Net Tricks
Mastering angular - Dot Net TricksMastering angular - Dot Net Tricks
Mastering angular - Dot Net Tricks
 
What’s new in angular 2 - From FrontEnd IL Meetup
What’s new in angular 2 - From FrontEnd IL MeetupWhat’s new in angular 2 - From FrontEnd IL Meetup
What’s new in angular 2 - From FrontEnd IL Meetup
 
AngularJs (1.x) Presentation
AngularJs (1.x) PresentationAngularJs (1.x) Presentation
AngularJs (1.x) Presentation
 
What’s new task due date, active guest users, and more enhancements released
What’s new  task due date, active guest users, and more enhancements releasedWhat’s new  task due date, active guest users, and more enhancements released
What’s new task due date, active guest users, and more enhancements released
 
Lecture 32
Lecture 32Lecture 32
Lecture 32
 
JahiaOne - Jahia7: Query and Search API under the Hood
JahiaOne - Jahia7: Query and Search API under the HoodJahiaOne - Jahia7: Query and Search API under the Hood
JahiaOne - Jahia7: Query and Search API under the Hood
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJS
 
Angular vs React : A Detailed Comparision
Angular vs React : A Detailed ComparisionAngular vs React : A Detailed Comparision
Angular vs React : A Detailed Comparision
 
AngularJS
AngularJSAngularJS
AngularJS
 
Angularjs PPT
Angularjs PPTAngularjs PPT
Angularjs PPT
 
Introduction to Angularjs : kishan kumar
Introduction to Angularjs : kishan kumarIntroduction to Angularjs : kishan kumar
Introduction to Angularjs : kishan kumar
 
Introducing Pebble SDK 2.0
Introducing Pebble SDK 2.0Introducing Pebble SDK 2.0
Introducing Pebble SDK 2.0
 
Angular crash course
Angular crash courseAngular crash course
Angular crash course
 
JahiaOne - MVC in Jahia 7 Using Spring Web Flow
JahiaOne - MVC in Jahia 7 Using Spring Web FlowJahiaOne - MVC in Jahia 7 Using Spring Web Flow
JahiaOne - MVC in Jahia 7 Using Spring Web Flow
 
Angular%201%20to%20angular%202
Angular%201%20to%20angular%202Angular%201%20to%20angular%202
Angular%201%20to%20angular%202
 
AngularJS = Browser applications on steroids
AngularJS = Browser applications on steroidsAngularJS = Browser applications on steroids
AngularJS = Browser applications on steroids
 
Angular resolver tutorial
Angular resolver tutorialAngular resolver tutorial
Angular resolver tutorial
 

Destaque

Destaque (6)

Palestra mídias sociais (EaD)
Palestra mídias sociais (EaD)Palestra mídias sociais (EaD)
Palestra mídias sociais (EaD)
 
Reuters: Pictures of the Year 2016 (Part 2)
Reuters: Pictures of the Year 2016 (Part 2)Reuters: Pictures of the Year 2016 (Part 2)
Reuters: Pictures of the Year 2016 (Part 2)
 
What's Next in Growth? 2016
What's Next in Growth? 2016What's Next in Growth? 2016
What's Next in Growth? 2016
 
The Six Highest Performing B2B Blog Post Formats
The Six Highest Performing B2B Blog Post FormatsThe Six Highest Performing B2B Blog Post Formats
The Six Highest Performing B2B Blog Post Formats
 
The Outcome Economy
The Outcome EconomyThe Outcome Economy
The Outcome Economy
 
32 Ways a Digital Marketing Consultant Can Help Grow Your Business
32 Ways a Digital Marketing Consultant Can Help Grow Your Business32 Ways a Digital Marketing Consultant Can Help Grow Your Business
32 Ways a Digital Marketing Consultant Can Help Grow Your Business
 

Semelhante a Angularjs y Simple Page Applications

Inthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePointInthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePoint
Inthiyaz Pathan
 

Semelhante a Angularjs y Simple Page Applications (20)

AngularJS is awesome
AngularJS is awesomeAngularJS is awesome
AngularJS is awesome
 
Module2
Module2Module2
Module2
 
Angular
AngularAngular
Angular
 
Inthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePointInthiyaz-4.6Years-SharePoint
Inthiyaz-4.6Years-SharePoint
 
Angularjs basic part01
Angularjs basic part01Angularjs basic part01
Angularjs basic part01
 
Angular patterns
Angular patternsAngular patterns
Angular patterns
 
Angular js
Angular jsAngular js
Angular js
 
Angular presentation
Angular presentationAngular presentation
Angular presentation
 
Building share point apps with angularjs
Building share point apps with angularjsBuilding share point apps with angularjs
Building share point apps with angularjs
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJS
 
The A1 "AngularJS 1 Kick Start"
The A1 "AngularJS 1 Kick Start"The A1 "AngularJS 1 Kick Start"
The A1 "AngularJS 1 Kick Start"
 
The A1 by Christian John Felix
The A1 by Christian John FelixThe A1 by Christian John Felix
The A1 by Christian John Felix
 
Angular Interview Question & Answers PDF By ScholarHat
Angular Interview Question & Answers PDF By ScholarHatAngular Interview Question & Answers PDF By ScholarHat
Angular Interview Question & Answers PDF By ScholarHat
 
Knockout js
Knockout jsKnockout js
Knockout js
 
Anjular js
Anjular jsAnjular js
Anjular js
 
Introduction to Angularjs
Introduction to AngularjsIntroduction to Angularjs
Introduction to Angularjs
 
AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)AngularJS in Production (CTO Forum)
AngularJS in Production (CTO Forum)
 
The future of web development write once, run everywhere with angular.js and ...
The future of web development write once, run everywhere with angular.js and ...The future of web development write once, run everywhere with angular.js and ...
The future of web development write once, run everywhere with angular.js and ...
 
The future of web development write once, run everywhere with angular js an...
The future of web development   write once, run everywhere with angular js an...The future of web development   write once, run everywhere with angular js an...
The future of web development write once, run everywhere with angular js an...
 
What are the key distinctions between Angular and AngularJS?
What are the key distinctions between Angular and AngularJS?What are the key distinctions between Angular and AngularJS?
What are the key distinctions between Angular and AngularJS?
 

Último

Último (20)

Oauth 2.0 Introduction and Flows with MuleSoft
Oauth 2.0 Introduction and Flows with MuleSoftOauth 2.0 Introduction and Flows with MuleSoft
Oauth 2.0 Introduction and Flows with MuleSoft
 
Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024Extensible Python: Robustness through Addition - PyCon 2024
Extensible Python: Robustness through Addition - PyCon 2024
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
Designing for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastDesigning for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at Comcast
 
Microsoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - QuestionnaireMicrosoft CSP Briefing Pre-Engagement - Questionnaire
Microsoft CSP Briefing Pre-Engagement - Questionnaire
 
How we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfHow we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdf
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024
 
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties ReimaginedEasier, Faster, and More Powerful – Notes Document Properties Reimagined
Easier, Faster, and More Powerful – Notes Document Properties Reimagined
 
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
 
WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024WebRTC and SIP not just audio and video @ OpenSIPS 2024
WebRTC and SIP not just audio and video @ OpenSIPS 2024
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
FDO for Camera, Sensor and Networking Device – Commercial Solutions from VinC...
 
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
ASRock Industrial FDO Solutions in Action for Industrial Edge AI _ Kenny at A...
 
What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024What's New in Teams Calling, Meetings and Devices April 2024
What's New in Teams Calling, Meetings and Devices April 2024
 
PLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. StartupsPLAI - Acceleration Program for Generative A.I. Startups
PLAI - Acceleration Program for Generative A.I. Startups
 
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
Integrating Telephony Systems with Salesforce: Insights and Considerations, B...
 
Syngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdf
 
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
1111 ChatGPT Prompts PDF Free Download - Prompts for ChatGPT
 

Angularjs y Simple Page Applications

  • 1. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. |© 2011 Medullan, Inc. |© 2012. Prepared by Medullan, Inc. | Ing. Jhon Samamé Gómez Septiembre 10, 2013 Simple Page Web Applications con
  • 2. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Agenda 1. AngularJs: Qué es? Por qué usarlo? 2. Expresiones y Directivas 3. Modulo 4. Enrutador 5. Controlador 6. Modelo 7. Simple Page Applications 8. Vistas Parciales 9. Comunicacion REST 10. Servicios 11. Demo 12.Recursos
  • 3. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Qué y Por qué AngularJs? • Open Source Javascript MVC Framework (como Backbone.js, Ember.js) • Mejora la Organizacion(Modulos y Servicios). • Modelos POJO(Plain Old JavaScript Objects). • Extiende el HTML(Directivas). • Inyeccion de Dependencia. • Facil de Testear (Mocking).
  • 4. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Expresiones • Usadas para pequeñas operaciones. • Usadas como {{ expresion }} • Dinamicas.
  • 5. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Directivas (Directives) • Usadas para grandes operaciones. • Extienden el HTML. • Permiten crear componentes. • Comunes: ng-model, ng-repeat, ng-switch, etc. http://bit.ly/15MQt2E
  • 6. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Componentes (Basico)
  • 7. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Componentes (Orden de Implementacion)
  • 8. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Modulo • Aplicaciones organizadas en modulos. • Pueden depender de otros modulos. • Contienen controladores, directivas, filtros, servicios, etc. • angular.module(…)
  • 9. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Enrutador • Configuracion de las rutas de nuestra aplicacion web. • Asocia la Url a una vista parcial y un controlador especifico. • $routeProvider.
  • 10. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Controlador • Definen el comportamiento. • Construyen el modelo que sera renderizado en la vista parcial. • No deben contener acceso a la UI. • Se comunican con la vista a traves del objeto $scope. • angular.controller(…)
  • 11. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Modelo • Propiedad del $scope dentro del controlador. • Cada vez que cambia, actualiza la vista. • Puede ser enlazado a la UI (textbox, labels, etc). • $scope.miModelo = [{…}];
  • 12. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Simple Page Applications • SPA o SPI (Interface) • Mejoran la experiencia del usuario (desktop). • Habilidad de cambiar la UI sin obtener el HTML desde el servidor nuevamente. • JSON, Ajax, REST,etc.
  • 13. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Vistas Parciales • Porcion de HTML que es embebido. • Se cargan dinamicamente (Ajax). • Generalmente asociadas a un Controlador. • Renderizan informacion del Modelo. • Son mantenidas en memoria por el explorador como templates.
  • 14. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | REST • Representational State Transfer. • Usa HTTP simple. • GET and POST convencionales. • GET/POST/PUT/DELETE. • Simple CRUD llevado a la web. • Autenticacion antes de ejecutar.
  • 15. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Servicios en AngularJS • Fabricas de objetos reusables. • Usa la Inyeccion de Dependencia. • Son inyectados al Controlador. • Faciles de testear. • Usados para obtener los datos desde el servidor y que seran transformados en el Modelo.
  • 16. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Demo • Servidor: nodeJs, ExpressJs • Cliente: Simple HTML, Vistas Parciales, AngularJS. • Modulo, Enrutador, Vistas Parciales, Controladores, Servicios. • Interface REST simple en NodeJs. (GET/POST)
  • 17. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Recursos •http://angularjs.org/ •https://plus.google.com/u/0/+AngularJS/posts •http://tecnimedios.com/blog/programacion/jquery/single- page-application-spa-una-tendencia-creciente/ •http://expressjs.com/guide.html •http://nodejs.org/ •http://jhonpierre.blogspot.com/ •https://jhonpierre.wordpress.com/
  • 18. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Medullan • Soluciones a medida. • Rubro: Cuidado de la Salud, Bienestar Social. • Career Manager. Ultimas Tecnologias. • Developer, Project Manager, QA Tester. • Trinidad y Tobago / USA. • Visita http://medullan.com/ • CV a careers@medullan.com • O a jsamame@medullan.com
  • 19. © 2011 Medullan, Inc. |IHS Zing Executive Checkpoint – March 29, 2011 © 2012. Prepared by Medullan, Inc. | Gracias