跳到主要內容

[分享] JavaScript for backend - Webconf 2013

Webconf 2013 兩天的活動,順利落幕,這次感謝龍哥、PCT 的邀請。

這次的分享以 { 重新認識 JavaScript } 為出發點,讓有興趣的朋友能夠初步的認識,JavaScript 這個語言除了對於瀏覽器以外,後端語言所帶來的衝擊。

歡迎大家多多指教,如有口誤歡迎指正,以下是投影片,和整個 slide 的準備稿。

如果對於 Node.js 有興趣的朋友,歡迎加入討論,




JavaScript for backend - WebConf 2013

  • who is designer, raise ur hand.
  • who is developer, raise ur hand.
  • who is marketing.
ASK 3 question to audience, raise ur hand and response with my question. all the ppl follow me.
  1. Do u write Javascript in both side(frontend and backend)
  2. know node.js?
  3. write some node.js or installed node.js before?
Start the slide share
  • Node.js we could not tell detail
  • Node.js is JavaScript
  • Node.js is JavaScript for backend. (found a back door image)
  • So let's talk about JavaScript for backend.
(3mins)
  • who am I
    • Node.js TW
    • Node.js book
    • Node.js Taiwan Party
    • welcome join us.
(2mins)
  • Most of us known JavaScript is
    • jQuery,
    • YUI
    • Prototype
  • JS library, not JavaScript.
(2mins)
  • Check your JavaScript from where.
    • console.log(typeof top);
    • window -> browser
    • undefined -> Node.js
(1mins)
  • Backend JavaScript a different parts.
(1mins)
  • CommonJS defination (include NPM describe)
    • require
      • JavaScript src is not a problem.(example, front and backend)
    • module
      • variable scope issue is easy.(example, front and bakend)
  • alos NPM is rock
    • NPM is dependency management.
    • module build is easy, but maintain is hard.
    • npm hava over 80000 modules.
(7mins)
Art of JavaScript
  • normal JS, and u should know.
    • variable,
    • function,
    • Array,
    • Object,
    • What is this,
    • Timer,
    • closure.
(3mins)
  • Asyn is an Art.
    • normal style. (X)
    • js is different part.
  • JSON is Rock tool for JS.
    • {} is cool.
  • Node.js help u build some good tools.
    • process control
    • util, inhert, log, pump
    • http, https
    • file system, stream
    • crypto, event
    • assert (for test)
    • also module
  • if node.js is ruby, then npm is gem.
    • express is Sinatra
    • stylus + nib is compass
  • also Node.js can build a high concurrency server.
  • so we could make JavaScript do a lot of thing in backend.
    • JavaScript is good in Backend.
    • The Awesome part is, no limitation of cross domain.
  • for example, request ('http://teste.com')
    • Yes, it could be a proxy server.
  • for example, build a server is easy.
    • static cache files server, u can build ur own.
  • help u build a restful server
    • JSON is rock
    • WebDAV method, GET, POST, PUT, DELETE
(5 - 7 mins)
  • restful is easy for u, if u use JavaScript.
  • JavaScript build a HTML5 game server.
  • JavaScript build realtime server.
  • JavaScript is good in Backend.
  • php, DNODE
  • ruby, FAYE
  • Java, Node.js for front end parts
(5 mins)
  • Gap is low
  • do some is fun/(callback, call, this is fun)
  • conclusion
    • JavaScript can help u nife,
    • JavaScript can help u do something u can not finished i backend.
    • Enjoy Javascript - JSDC 2013 & js, html5, node
(3 mins)
  • Q&A

PS.
感謝在 Node.js 社群中的所有夥伴,提供了寶貴的資料與經驗,感謝所有參與者,感謝所有協助的人。

留言

這個網誌中的熱門文章

[CSS] z-index 在不同瀏覽器繼承問題

今天會討論到這個課題,是因為要實做一個Popup dialog,所以我們希望的結果如下圖。 可是在IE7 卻發生了這樣的情況。 Popup不論怎麼設定z-index都無法浮在最上層,我們看一下html架構發生什麼事情。

[教學] 快快樂樂刪除CodeIgniter index.php

預設的CI網址預設都設定為index.php同一層級,因此所有的程式都必須指定index.php導向才能開始,例如 http://localhost/ci/index.php/welcome/test http://localhost/ci/welcome/test 本文將說明如何將惱人的index.php消除,還你一個漂亮的URL。 設定開始: 接下來說明如何使用rewrite方式將惱人的index.php去除。 rewrite不清楚的人,煩請先自行google 首先要先確定Apache的 mod_rewrite 有 開啟 ,如果沒有開啟請設定好之後重新啟動apache。 接著,在根目錄底下建立一個新檔案,檔名為 .htaccess ,裡面程式碼如下: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] </IfModule> 接著到 application/config/config.php ,開啟檔案修改 $config['index_page'] = ""; 注意: /index.php/$1 要根據你目錄,例如 http://localhost/index.php ,網站根目錄為 /ci/index.php 則要寫成 /ci/index.php/$1 接著至CI目錄下,尋找 config\config.php , 修改一下裡面的檔案,修改如下: $config['index_page'] = ""; 存檔後,如此一來大功告成。 參考資料 官方網站說明

[教學] Mojito 安裝與入門,install mojito for beginner.

mojito ,最近終於從 YDN 對外公開此專案,這個套件主要用於解決前端多重裝置及瀏覽器端的問題,後端服務採取 node.js ,因此使用上必定要先準備以下幾個元素 準備素材 c++ complier git Node.js > 0.4.x NPM > 1.0.x 安裝方式 git clone git://github.com/yahoo/mojito.git cd mojito/source sudo npm install -g . npm install . 以上四個簡單的步驟,就可以把 mojito module 完整安裝到服務器上,接著就可以開始進入 mojito 的世界 使用方式 mojito 提供了完整的 command line 給開發者使用,接著先建立一個基本 hello world 專案,跟著以下步驟完成第一個專案。首先建立一個 mojito application, mojito create app hello cd hello 切換到目錄之後,再接著建立自己的 mojit,這邊的 mojit 就像是一個應用(application)可能會包含許多個獨立網站體,擁有獨立架構的 MVC ,包含內部設定等,詳細資料可以參考官方的 說明 ,建立 mojit mojito create mojit HelloMojit 輸入指令後,會看到顯示結果如下, creating mojit called 'HelloMojit' (using "default" archetype) ✔ mojit: HelloMojit created! ✔ mojito done. 接著修改 application.json 這個 mojit 設定檔案,讓剛才新建立的 hellp application 指定底下有一個 mojit -> HelloMojit ,讓應用可以去執行 mojit controller ,修改如下, [ { "settings": [ "master" ], "appPort": 8666, "specs": { ...