SlideShare une entreprise Scribd logo
1  sur  37
Télécharger pour lire hors ligne
Mojito and Cocktails
@ddsakura
I am…
—  ddsakura   / 賽拉維.柯南




                          2
Outline




          3
Cocktails is
—  an
     alcoholic mixed drink that contains
  two or more ingredients — at least one
  of the ingredients must be a spirit.




                                           4
Cocktails is also
—  amix of HTML5, NodeJS, CSS3,YUI and a
   lot of ingenious, creative mind-bending
   tricks from Yahoo!




                                         5
Cocktails and YUI
—  YUI is a free, open source JavaScript and
   CSS framework for building richly
   interactive web applications
    ◦  http://developer.yahoo.com/yui/
    ◦  https://github.com/yui
§  YUI3 is a foundation for Cocktails




                                                6
Eating your own dog food
—  like Yahoo!   Livestand.




                               7
Mojito is
—  Mojito   (/moʊˈhiːtoʊ/)
  ◦  It is a kind of cocktail




                                8
Mojito is
—  Mojito is a MVC application framework built on
    YUI 3.
—  One Language
      ◦  Mojito allows developers to write client and server
         components in the same language - JavaScript, using
         the same framework.
—    Two Runtimes
      ◦  Mojito can run on the client (in the browser) and on
         the server (with Node.js).
—    In addition, Mojito has built-in support for
      internationalization and testing
                                                                9
The idea is




From Matt Taylor http://www.slideshare.net/rhyolight/mojito-sl-2011   10
The idea is




From Matt Taylor http://www.slideshare.net/rhyolight/mojito-sl-2011   11
The idea is




From Matt Taylor http://www.slideshare.net/rhyolight/mojito-sl-2011   12
Mojito is open!
—  http://developer.yahoo.com/cocktails/
    mojito/
—  https://github.com/yahoo/mojito/




                                            13
Mojits




         14
16
17
19
Mojito application concept




                             20
Mojito application directory
structure




                               21
DEMO - Hello World
—    Install nodejs and npm
—    Get mojito from npm registry
      ◦  npm install mojito -g
—    Create a mojito application
      ◦  mojito create app helloworld
—    Create a mojit in application
      ◦  mojito create mojit myMojit
—    Modify the controller.server.js
      ◦  vi mojits/myMojit/controller.server.js
—    Run the mojito application
      ◦  mojito start
—    Go to http://localhost:8666/@myMojit/index
                                                   22
Configuration
—  Application
  Configuration
  ◦  The application is
     configured in the
     application.json file in the
     application directory.
  ◦  http://
     developer.yahoo.com/
     cocktails/mojito/docs/
     intro/
     mojito_configuring.html
                                    23
Configuration
—  Routing                         [
                                        {
  ◦  In Mojito, routing is the              "settings": [ "master" ],
     mapping of URLs to                     "foo index": {
     specific mojit actions. This             "verbs": ["get"],
                                              "path": "/",
     section will describe the                "call": ”@myMojit.index"
     routing configuration file             }
     routes.json                        }
  ◦  http://                        ]
     developer.yahoo.com/
     cocktails/mojito/docs/
     intro/
     mojito_configuring.html
                                                                         24
DEMO - Routing
—    Create the file routes.json with the following
      [
          {
              "settings": ["master"],
              "index_route": {
                "verbs": ["get"],
                "path": "/index",
                "call": "@myMojit.index"
              }
          }
      ]

—    Run the mojito application
      ◦  mojito start
—    Go to http://localhost:8666/index                25
Template Engine
—  Currently, theonly template system
    allowed is Mustache, so the name of view
    templates always contains mu
—  http://mustache.github.com/




                                               26
Views in Mojito
—    The views are HTML files that can include template tags, such as Mustache
      tags, and are located in the views directory
—    We call these files view templates
—    Naming Convention for view templates
      ◦  {controller_function}.[{device}].{rendering_engine}.html
—    Example
      ◦  greeting.mu.html - This view template gets data from the greeting function of the
         controller and the calling device is determined to be a Web browser.
      ◦  get_photos.iphone.mu.html - This view template gets data from the get_photos
         function of the controller and the calling device is an iPhone.
      ◦  find_friend.android.mu.html - This view template gets data from the find_friend
         function of the controller and the calling device is Android based.




                                                                                             27
The tools for Multi-Device
—    CSS3 Media Queries




—    Mojito view template

                             28
DEMO – Views for different Devices
—  Create   index.iphone.mu.html
  ◦  cp index.mu.html index.iphone.mu.html
  ◦  vi mojits/myMojit/views/index.iphone.mu.html
—  Run   the mojito application
  ◦  mojito start
—  Go   to http://localhost:8666/index


                                                    29
Mojito API
—  Mojito  has an API that includes addons and
    methods for handling parameters, cookies,
    URLs, assets, REST calls, globalization/
    localization, and more.
—  http://developer.yahoo.com/cocktails/
    mojito/docs/api_overview/
—  http://developer.yahoo.com/cocktails/
    mojito/api/index.html
                                                  30
Built-in Mojits
—  Mojito comes with the built-in utility mojits that
    make developing applications easier.
—  HTMLFrameMojit
      ◦  The HTMLFrameMojit builds the HTML skeleton of
         a Web page.
—    LazyLoadMojit
      ◦  This allows Mojito application to load the page
         quickly and then lazily load parts of the page.
—    http://developer.yahoo.com/cocktails/mojito/
      docs/topics/mojito_framework_mojits.html
                                                           31
DEMO – HTMLFrameMojit & API




                              32
DEMO – LazyLoad



                  33
Deployment
—  Mojito   on Heroku




                         34
Mojito Shaker
—  Shaker  is a static asset rollup manager for
    Mojito applications.
—  https://github.com/yahoo/mojito-shaker
—  http://developer.yahoo.com/cocktails/
    shaker/



                                               35
Conclusion
—  Cocktails is an ecosystem mix of HTML5, NodeJS,
    CSS3,YUI and relative technology
—  Mojito is a MVC application framework
      ◦  One language
      ◦  Two Runtimes
—  Mojito is available under a BSD license
—  A lot of docs are available, we can start from
    http://developer.yahoo.com/cocktails/mojito/
—  We also have forum to discuss this:
    http://developer.yahoo.com/forum/Yahoo-Mojito
                                                     36
Contact info
—  @ddsakura
—  Demo sample code
 https://github.com/ddsakura/
 mojitoHelloworld




                                37

Contenu connexe

Similaire à Mojito@nodejstw

FEDM Meetup: Introducing Mojito
FEDM Meetup: Introducing MojitoFEDM Meetup: Introducing Mojito
FEDM Meetup: Introducing MojitoCaridy Patino
 
Yahoo! 釀的酒 - 淺嚐 Cocktails
Yahoo! 釀的酒 - 淺嚐 CocktailsYahoo! 釀的酒 - 淺嚐 Cocktails
Yahoo! 釀的酒 - 淺嚐 CocktailsYing-Hsiang Liao
 
Introduction to the Yahoo! Mojito Node.js MVC
Introduction to the Yahoo! Mojito Node.js MVCIntroduction to the Yahoo! Mojito Node.js MVC
Introduction to the Yahoo! Mojito Node.js MVCAvinash Chukka
 
Yahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVC
Yahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVCYahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVC
Yahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVCYahoo Developer Network
 
Building for multiple devices using a single language and framework
Building for multiple devices using a single language and frameworkBuilding for multiple devices using a single language and framework
Building for multiple devices using a single language and frameworkFabian Frank
 
Mojito: Building for multiple devices using a single language and framework
Mojito: Building for multiple devices using a single language and frameworkMojito: Building for multiple devices using a single language and framework
Mojito: Building for multiple devices using a single language and frameworkDiego Ferreiro Val
 
YUIConf2012: Mojito for YUI Developers
YUIConf2012: Mojito for YUI DevelopersYUIConf2012: Mojito for YUI Developers
YUIConf2012: Mojito for YUI DevelopersCaridy Patino
 
How to integrate portlet as widget in liferay to any website application
How to integrate portlet as widget in liferay to any website applicationHow to integrate portlet as widget in liferay to any website application
How to integrate portlet as widget in liferay to any website applicationAzilen Technologies Pvt. Ltd.
 
Mageguru - magento custom module development
Mageguru -  magento custom module development Mageguru -  magento custom module development
Mageguru - magento custom module development Mage Guru
 
jQueryMobile Jump Start
jQueryMobile Jump StartjQueryMobile Jump Start
jQueryMobile Jump StartHaim Michael
 
Html5 mobile develop tools
Html5 mobile develop toolsHtml5 mobile develop tools
Html5 mobile develop toolsLey Liu
 
Yahoo! scale Node.js
Yahoo! scale Node.jsYahoo! scale Node.js
Yahoo! scale Node.jsFabian Frank
 
Integrate Shindig with Joomla
Integrate Shindig with JoomlaIntegrate Shindig with Joomla
Integrate Shindig with JoomlaAnand Sharma
 
Schemaorg cmsplugins
Schemaorg cmspluginsSchemaorg cmsplugins
Schemaorg cmspluginsSTIinnsbruck
 
Micronaut: Changing the Micro Future
Micronaut: Changing the Micro FutureMicronaut: Changing the Micro Future
Micronaut: Changing the Micro FutureZachary Klein
 
Going Mobile
Going MobileGoing Mobile
Going MobileStephen G
 
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3Doris Chen
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to DjangoAhmed Salama
 

Similaire à Mojito@nodejstw (20)

FEDM Meetup: Introducing Mojito
FEDM Meetup: Introducing MojitoFEDM Meetup: Introducing Mojito
FEDM Meetup: Introducing Mojito
 
Mojito
MojitoMojito
Mojito
 
Yahoo! 釀的酒 - 淺嚐 Cocktails
Yahoo! 釀的酒 - 淺嚐 CocktailsYahoo! 釀的酒 - 淺嚐 Cocktails
Yahoo! 釀的酒 - 淺嚐 Cocktails
 
淺談 NodeJS 與框架
淺談 NodeJS 與框架淺談 NodeJS 與框架
淺談 NodeJS 與框架
 
Introduction to the Yahoo! Mojito Node.js MVC
Introduction to the Yahoo! Mojito Node.js MVCIntroduction to the Yahoo! Mojito Node.js MVC
Introduction to the Yahoo! Mojito Node.js MVC
 
Yahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVC
Yahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVCYahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVC
Yahoo! Hack India: Hyderabad | Introduction to the Yahoo! Mojito Node.js MVC
 
Building for multiple devices using a single language and framework
Building for multiple devices using a single language and frameworkBuilding for multiple devices using a single language and framework
Building for multiple devices using a single language and framework
 
Mojito: Building for multiple devices using a single language and framework
Mojito: Building for multiple devices using a single language and frameworkMojito: Building for multiple devices using a single language and framework
Mojito: Building for multiple devices using a single language and framework
 
YUIConf2012: Mojito for YUI Developers
YUIConf2012: Mojito for YUI DevelopersYUIConf2012: Mojito for YUI Developers
YUIConf2012: Mojito for YUI Developers
 
How to integrate portlet as widget in liferay to any website application
How to integrate portlet as widget in liferay to any website applicationHow to integrate portlet as widget in liferay to any website application
How to integrate portlet as widget in liferay to any website application
 
Mageguru - magento custom module development
Mageguru -  magento custom module development Mageguru -  magento custom module development
Mageguru - magento custom module development
 
jQueryMobile Jump Start
jQueryMobile Jump StartjQueryMobile Jump Start
jQueryMobile Jump Start
 
Html5 mobile develop tools
Html5 mobile develop toolsHtml5 mobile develop tools
Html5 mobile develop tools
 
Yahoo! scale Node.js
Yahoo! scale Node.jsYahoo! scale Node.js
Yahoo! scale Node.js
 
Integrate Shindig with Joomla
Integrate Shindig with JoomlaIntegrate Shindig with Joomla
Integrate Shindig with Joomla
 
Schemaorg cmsplugins
Schemaorg cmspluginsSchemaorg cmsplugins
Schemaorg cmsplugins
 
Micronaut: Changing the Micro Future
Micronaut: Changing the Micro FutureMicronaut: Changing the Micro Future
Micronaut: Changing the Micro Future
 
Going Mobile
Going MobileGoing Mobile
Going Mobile
 
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
Building Beautiful and Interactive Windows 8 apps with JavaScript, HTML5 & CSS3
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
 

Dernier

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...apidays
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusZilliz
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 

Dernier (20)

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot ModelNavi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Navi Mumbai Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
A Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source MilvusA Beginners Guide to Building a RAG App Using Open Source Milvus
A Beginners Guide to Building a RAG App Using Open Source Milvus
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 

Mojito@nodejstw

  • 2. I am… —  ddsakura / 賽拉維.柯南 2
  • 4. Cocktails is —  an alcoholic mixed drink that contains two or more ingredients — at least one of the ingredients must be a spirit. 4
  • 5. Cocktails is also —  amix of HTML5, NodeJS, CSS3,YUI and a lot of ingenious, creative mind-bending tricks from Yahoo! 5
  • 6. Cocktails and YUI —  YUI is a free, open source JavaScript and CSS framework for building richly interactive web applications ◦  http://developer.yahoo.com/yui/ ◦  https://github.com/yui §  YUI3 is a foundation for Cocktails 6
  • 7. Eating your own dog food —  like Yahoo! Livestand. 7
  • 8. Mojito is —  Mojito (/moʊˈhiːtoʊ/) ◦  It is a kind of cocktail 8
  • 9. Mojito is —  Mojito is a MVC application framework built on YUI 3. —  One Language ◦  Mojito allows developers to write client and server components in the same language - JavaScript, using the same framework. —  Two Runtimes ◦  Mojito can run on the client (in the browser) and on the server (with Node.js). —  In addition, Mojito has built-in support for internationalization and testing 9
  • 10. The idea is From Matt Taylor http://www.slideshare.net/rhyolight/mojito-sl-2011 10
  • 11. The idea is From Matt Taylor http://www.slideshare.net/rhyolight/mojito-sl-2011 11
  • 12. The idea is From Matt Taylor http://www.slideshare.net/rhyolight/mojito-sl-2011 12
  • 13. Mojito is open! —  http://developer.yahoo.com/cocktails/ mojito/ —  https://github.com/yahoo/mojito/ 13
  • 14. Mojits 14
  • 15.
  • 16. 16
  • 17. 17
  • 18.
  • 19. 19
  • 22. DEMO - Hello World —  Install nodejs and npm —  Get mojito from npm registry ◦  npm install mojito -g —  Create a mojito application ◦  mojito create app helloworld —  Create a mojit in application ◦  mojito create mojit myMojit —  Modify the controller.server.js ◦  vi mojits/myMojit/controller.server.js —  Run the mojito application ◦  mojito start —  Go to http://localhost:8666/@myMojit/index 22
  • 23. Configuration —  Application Configuration ◦  The application is configured in the application.json file in the application directory. ◦  http:// developer.yahoo.com/ cocktails/mojito/docs/ intro/ mojito_configuring.html 23
  • 24. Configuration —  Routing [ { ◦  In Mojito, routing is the "settings": [ "master" ], mapping of URLs to "foo index": { specific mojit actions. This "verbs": ["get"], "path": "/", section will describe the "call": ”@myMojit.index" routing configuration file } routes.json } ◦  http:// ] developer.yahoo.com/ cocktails/mojito/docs/ intro/ mojito_configuring.html 24
  • 25. DEMO - Routing —  Create the file routes.json with the following [ { "settings": ["master"], "index_route": { "verbs": ["get"], "path": "/index", "call": "@myMojit.index" } } ] —  Run the mojito application ◦  mojito start —  Go to http://localhost:8666/index 25
  • 26. Template Engine —  Currently, theonly template system allowed is Mustache, so the name of view templates always contains mu —  http://mustache.github.com/ 26
  • 27. Views in Mojito —  The views are HTML files that can include template tags, such as Mustache tags, and are located in the views directory —  We call these files view templates —  Naming Convention for view templates ◦  {controller_function}.[{device}].{rendering_engine}.html —  Example ◦  greeting.mu.html - This view template gets data from the greeting function of the controller and the calling device is determined to be a Web browser. ◦  get_photos.iphone.mu.html - This view template gets data from the get_photos function of the controller and the calling device is an iPhone. ◦  find_friend.android.mu.html - This view template gets data from the find_friend function of the controller and the calling device is Android based. 27
  • 28. The tools for Multi-Device —  CSS3 Media Queries —  Mojito view template 28
  • 29. DEMO – Views for different Devices —  Create index.iphone.mu.html ◦  cp index.mu.html index.iphone.mu.html ◦  vi mojits/myMojit/views/index.iphone.mu.html —  Run the mojito application ◦  mojito start —  Go to http://localhost:8666/index 29
  • 30. Mojito API —  Mojito has an API that includes addons and methods for handling parameters, cookies, URLs, assets, REST calls, globalization/ localization, and more. —  http://developer.yahoo.com/cocktails/ mojito/docs/api_overview/ —  http://developer.yahoo.com/cocktails/ mojito/api/index.html 30
  • 31. Built-in Mojits —  Mojito comes with the built-in utility mojits that make developing applications easier. —  HTMLFrameMojit ◦  The HTMLFrameMojit builds the HTML skeleton of a Web page. —  LazyLoadMojit ◦  This allows Mojito application to load the page quickly and then lazily load parts of the page. —  http://developer.yahoo.com/cocktails/mojito/ docs/topics/mojito_framework_mojits.html 31
  • 35. Mojito Shaker —  Shaker is a static asset rollup manager for Mojito applications. —  https://github.com/yahoo/mojito-shaker —  http://developer.yahoo.com/cocktails/ shaker/ 35
  • 36. Conclusion —  Cocktails is an ecosystem mix of HTML5, NodeJS, CSS3,YUI and relative technology —  Mojito is a MVC application framework ◦  One language ◦  Two Runtimes —  Mojito is available under a BSD license —  A lot of docs are available, we can start from http://developer.yahoo.com/cocktails/mojito/ —  We also have forum to discuss this: http://developer.yahoo.com/forum/Yahoo-Mojito 36
  • 37. Contact info —  @ddsakura —  Demo sample code https://github.com/ddsakura/ mojitoHelloworld 37