SlideShare una empresa de Scribd logo
1 de 32
Descargar para leer sin conexión
Moj ito 開發 M obile Web

實戰經驗談
自我介紹

Eric Chuang
@ddsakura
@Yahoo!

Blog @ http://cire.pixnet.net
這 30 Mins 我想講

什麼是 Mojito
最近用 Mojito 開發的網站
開發時用到的相關技術與經驗談
什麼 是Mojito

Yahoo! Open Source Mojito in April, 2012

A JavaScript MVC framework built on YUI3
for web applications.

Because client and server components are
both written in JavaScript, Mojito can run
on the client (browser) or the server
(Node.js).
什麼 是 Mojito

簡單說它就是 Yahoo! 開源出來的 Node.js
for web applications 的 MVC 解決方案
MVC F rameworks

http://jster.net/category/mvc-frameworks
Mojito 的網路資源

YDN http://developer.yahoo.
com/cocktails/mojito/

Github
https://github.com/yahoo/mojito
o 除了看原 始碼也要看
Gith ub 的 mojit

讀我 README
https://github.com/yahoo/mojito
wiki
https://github.
com/yahoo/mojito/wiki
sample code
https://github.
com/yahoo/mojito/tree/develop/e
xamples
Mojito Framework
重要的 co mponents

設定檔
   application.json 與 route.json
Mojit = Widget + module
   M - model
   V - view
   C - Controller
Binder
   在 client-side Mojito runtime 運作的 js
使用 M ojito 的服務

http://axis.yahoo.com/



http://tw.cybergeddon.yahoo.com/
近用 Mojito 開發的網站
來 看看最

請打開 智慧型手機 的
瀏覽器 輸入
http://m.tw.bid.yahoo.com
現場 Demo 一下
關於Moji to的經驗之一

版本
 第一次上手請用最新版 (0.5.1)
 原本有試用的請升級到 > 0.5
 總而言之 請用 0.5 以上版本

> 0.5
   速度快很多
   有些用法有點不同
關於Moji to的經驗之二

善用設定檔
 application.json & route.json
   JSON format
   context configuration

http://developer.yahoo.
com/cocktails/mojito/docs/intro/mojito_configuri
ng.html
r oute.json
 [{
      "settings": [ "master" ],
      "root": {
        "verb": ["get"],
        "path": "/*",
        "call": "foo-1.index"
      },
      "foo_default": {
        "verb": ["post"],
        "path": "/foo",
        "call": "foo-1.post"
      },
      "bar_default": {
        "verb": ["get"],
        "path": "/bar",
        "call": "bar-1.index",
        "params": { "page": 1, "log_request": true }
      }
 }]
設定檔

在Mojito內的自定設定值,可以透過下面方
式取得
require mojito-config-addon in the
controller.
use ac.config.get() to get the config
use ac.config.getAppConfig()
Context Con figurations

  [
      {
        "settings": [ "master" ],
        "specs": {
          ...
        }
      },
      {
        "settings": [ "environment:development" ],
        "specs": {
          ...
        }
      },
      ...
  ]
關於Moji to的經驗之三

static asset rollup and management
   Mojito-Shaker
      npm package
      透過設定檔,可以將 asset 部署到
         local 或 雲端
    https://github.com/yahoo/mojito-shaker


  使用版本 2.0.37pr5
關於Moji to的經驗之四

適度將程式拉到 application level
 共用且統一的 lib
  error handle
  ajax
  i18N
  api call handle
關於Moji to的經驗之五

關於 template view engine
 handlebars
 http://handlebarsjs.com/
 mojito 0.5 有些功能還沒有支援
    partial
    helpers
   但可以自己加入 template view engine
關於Moji to的經驗之六

mojito 可以使用其他 nodejs package 嗎?
  答案當然是可以的

我們用了
 async
    https://github.com/caolan/async
  memcached
    https://github.com/3rd-Eden/node-memcached
關於Moji to的經驗之七

好雲端讓你上天堂!
 內部 hosting environment
  簡化的 deploy 步驟
  可整合 CI 系統
 那外部呢?
  Heroku
  Nodejitsu
      https://github.com/yahoo/mojito/wiki/Hosting
關於Moji to的經驗之八

還有一些提升速度的方法
 gzip
 yts - yahoo traffic server
 appropriate size images
 cdn
來 談談前端吧

我們使用 YUI 3.6
 附帶一提 YUI 最新的版本是 3.8.0
 http://yuilibrary.com/

也用 LESS
 LESS extends CSS with dynamic behavior such
 as variables, mixins, operations and functions.
 http://lesscss.org/
YUI 是什麼!!

            ......
YUI是

YUI is a free, open source JavaScript and
CSS library for building richly interactive
web applications.

很常拿來比較的另一個 library 就是 JQuery
些元件可能會重複使用
有

所以我們也整理了共同的函式來處理
 ajax
 error handle

還有 UI 元件!! - Bottle
Bottle

 UI Library provides Mobile-friendly UI
 components
 YUI Gallery
 Apply to our project
 Open! and welcome try it!
 http://zordius.github.com/yui3-gallery/gallery-
 bottle/
 http://www.yuiblog.
 com/blog/2013/01/07/yuiconf-2012talk-bottle-
 mobile-ui-library-with-montie-tsai-and-zordius-
 chen/
測試

很重要
也是挑戰
除了功能
別忘了壓測
其 他參考影片

http://www.youtube.com/watch?v=e-wspy6DicE
http://www.youtube.com/watch?v=vIvFbJo1Fj8
http://www.youtube.com/watch?v=1T5KMozs6Sc
大感謝 !! 講完了!!

歡迎交流互動

Más contenido relacionado

Similar a Mojito 開發 mobile web 實戰經驗談

Spring 2.x 中文
Spring 2.x 中文Spring 2.x 中文
Spring 2.x 中文Guo Albert
 
ASP.NET MVC 善用網路資源快速完打造網站
ASP.NET MVC 善用網路資源快速完打造網站ASP.NET MVC 善用網路資源快速完打造網站
ASP.NET MVC 善用網路資源快速完打造網站twMVC
 
极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)Will Huang
 
富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用luolonghao
 
Symfony簡介
Symfony簡介Symfony簡介
Symfony簡介Ricky Su
 
Using google appengine_1027
Using google appengine_1027Using google appengine_1027
Using google appengine_1027Wei Sun
 
以HTML5和COIMOTION打造跨平台App
以HTML5和COIMOTION打造跨平台App以HTML5和COIMOTION打造跨平台App
以HTML5和COIMOTION打造跨平台AppBen Lue
 
20170430 python爬蟲攻防戰-攻防與金融大數據分析班
20170430 python爬蟲攻防戰-攻防與金融大數據分析班20170430 python爬蟲攻防戰-攻防與金融大數據分析班
20170430 python爬蟲攻防戰-攻防與金融大數據分析班Paul Chao
 
Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1modou li
 
Using google appengine (2)
Using google appengine (2)Using google appengine (2)
Using google appengine (2)Wei Sun
 
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API twMVC
 
轻量级Flash服务器开发框架(刘恒)
轻量级Flash服务器开发框架(刘恒)轻量级Flash服务器开发框架(刘恒)
轻量级Flash服务器开发框架(刘恒)FLASH开发者交流会
 
Micro-frontends with Angular 10 (Modern Web 2020)
Micro-frontends with Angular 10 (Modern Web 2020)Micro-frontends with Angular 10 (Modern Web 2020)
Micro-frontends with Angular 10 (Modern Web 2020)Will Huang
 
模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京Joseph Chiang
 
Non-MVC Web Framework
Non-MVC Web FrameworkNon-MVC Web Framework
Non-MVC Web FrameworkFred Chien
 
Django
DjangoDjango
DjangoTao He
 
Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介
Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介
Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介Fred Lin
 
201206010 pyjamas final
201206010 pyjamas final201206010 pyjamas final
201206010 pyjamas finalRasiel Chang
 
twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸twMVC
 

Similar a Mojito 開發 mobile web 實戰經驗談 (20)

Spring 2.x 中文
Spring 2.x 中文Spring 2.x 中文
Spring 2.x 中文
 
ASP.NET MVC 善用網路資源快速完打造網站
ASP.NET MVC 善用網路資源快速完打造網站ASP.NET MVC 善用網路資源快速完打造網站
ASP.NET MVC 善用網路資源快速完打造網站
 
极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)极速 Angular 开发:效能调校技巧 (ngChina 2019)
极速 Angular 开发:效能调校技巧 (ngChina 2019)
 
富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用富文本编辑器在互联网上的应用
富文本编辑器在互联网上的应用
 
Symfony簡介
Symfony簡介Symfony簡介
Symfony簡介
 
Using google appengine_1027
Using google appengine_1027Using google appengine_1027
Using google appengine_1027
 
以HTML5和COIMOTION打造跨平台App
以HTML5和COIMOTION打造跨平台App以HTML5和COIMOTION打造跨平台App
以HTML5和COIMOTION打造跨平台App
 
20170430 python爬蟲攻防戰-攻防與金融大數據分析班
20170430 python爬蟲攻防戰-攻防與金融大數據分析班20170430 python爬蟲攻防戰-攻防與金融大數據分析班
20170430 python爬蟲攻防戰-攻防與金融大數據分析班
 
Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1Uliweb cheat sheet_0.1
Uliweb cheat sheet_0.1
 
Using google appengine (2)
Using google appengine (2)Using google appengine (2)
Using google appengine (2)
 
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
twMVC#33聊聊如何自建 Facebook {廣告} 服務 with API
 
轻量级Flash服务器开发框架(刘恒)
轻量级Flash服务器开发框架(刘恒)轻量级Flash服务器开发框架(刘恒)
轻量级Flash服务器开发框架(刘恒)
 
Micro-frontends with Angular 10 (Modern Web 2020)
Micro-frontends with Angular 10 (Modern Web 2020)Micro-frontends with Angular 10 (Modern Web 2020)
Micro-frontends with Angular 10 (Modern Web 2020)
 
模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京模块加载策略 - 2012 SDCC, 北京
模块加载策略 - 2012 SDCC, 北京
 
Non-MVC Web Framework
Non-MVC Web FrameworkNon-MVC Web Framework
Non-MVC Web Framework
 
Django
DjangoDjango
Django
 
Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介
Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介
Developer也可以做出漂亮網站 - Twitter Bootstrap/JQuery Mobile簡介
 
201206010 pyjamas final
201206010 pyjamas final201206010 pyjamas final
201206010 pyjamas final
 
Osgi Intro
Osgi IntroOsgi Intro
Osgi Intro
 
twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸twMVC#01 | ASP.NET MVC 的第一次親密接觸
twMVC#01 | ASP.NET MVC 的第一次親密接觸
 

Último

Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...
Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...
Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...schonejummy
 
IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...
IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...
IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...schonejummy
 
Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...
Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...
Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...daisycvs
 
IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.
IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.
IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.zuhaibhaideri99
 
Hi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVC
Hi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVCHi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVC
Hi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVCschonejummy
 
Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.
Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.
Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.fionamali24
 
《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》
《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》
《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》powerdd
 
Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...
Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...
Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...fionamali24
 

Último (8)

Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...
Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...
Al Doha +971552965071 Abortion Pills in Doha Qatar Al Wakrah misoprostol/cyto...
 
IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...
IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...
IN Port Alfred [[[[WhatsApp (((+27632505360))) *____**)) ABORTION PILLS FOR S...
 
Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...
Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...
Abortion Pills for sale in Ajman (UAE) ((+27.7377;58;557) Abortion Pills / Cy...
 
IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.
IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.
IN MUSCAT & OMAN 🏥[^(+968_76875161*))☎️)¥) LEGIT Cytotec Pills.
 
Hi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVC
Hi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVCHi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVC
Hi 00971552965071 ABORTION PILLS IN Marina Palm Jumeirah JVC
 
Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.
Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.
Kuwait City₩Kit【+971523788684】彡 ௹#Abortion Pills For sale In Kuwait City.
 
《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》
《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》
《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》《段永平(投資的本質)》
 
Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...
Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...
Abortion in AL AIN*%UAE^*[☎️+971523788684**]]@ @# Abortion pills for sale in ...
 

Mojito 開發 mobile web 實戰經驗談