馬
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    --- title: '前端經驗分享' --- <style> iframe { width: 100%; height: 100%; min-height: 600px; } </style> ## 前端經驗分享 --- ## 目錄 1. JavaScript 的歷史 2. JavaScript 的崛起 + 前端工程化 3. Component 4. 約定優於配置 5. 前端的定位分歧 --- ## JavaScript 的歷史 --- http://evolutionofweb.appspot.com/?hl=zh-tw --- <iframe src="https://littlehorseboy.github.io/react-final-report/storybook-static/?path=/story/javascriptmilestone--allmilestone"></iframe> --- <iframe src="https://littlehorseboy.github.io/react-final-report/storybook-static/?path=/story/javascriptmilestone--javascriptmilestone"></iframe> --- <iframe src="https://littlehorseboy.github.io/react-final-report/storybook-static/?path=/story/javascriptmilestone--nodejsmilestone"></iframe> --- ## JavaScript 的崛起 + 前端工程化 --- 可能也不算是崛起,而是必然的結果,因為無論怎麼變化,JavaScript 其實始終主宰著瀏覽器與外界交流的語言 --- ### ECMAScript ECMA (資訊和電信標準組織),訂定了 ECMAScript 的國際標準,讓各家瀏覽器必須遵照標準來實作 使得各家瀏覽器的差異逐漸縮小 --- ### Ajax 因為這個技術,前端可以在瀏覽器上主動向伺服器發送請求,不需要跳頁就可以跟後端取得資料,所以有些資料邏輯的操作會放在瀏覽器端來管理 SPA 的購物網站 https://fandorashop.com/ 傳統的購物網站 https://www.muji.com/tw/products/ --- ### HTML5 初始版本 2014年10月 要讓瀏覽器實現的網路應用的標準集,實際指的是包括 HTML、CSS 和 JavaScript 在內的一套技術組合,減少瀏覽器對於外掛程式的需求 (像是 flash 或音樂之類的應用) --- HTML5 的其中幾個 specification Svg Canvas Audio Video Drag and Drop Web Sockets Web Workers Web Storage --- ### Node.js 還有 [Node.js](https://hackmd.io/@VG05q7U5Rl6Xkj4FeqBHrA/ry3rxDa2E?type=slide#/) --- ## Component 這邊就要跳過 ES6 及 webpack 直接到 React 了 https://github.com/adam-golab/react-developer-roadmap --- 此時前端更注重的是資料與狀態的管理,以及它們如何跟畫面的整合與同步。 前端框架慢慢發展成 MVVM 模式,簡單說就是資料驅動畫面 --- React 可以將 UI 拆分為獨立的 Component,單獨考慮每個部分,可重複使用的部分,然後利用組合這些 Component 來製作複雜的 UI --- ## 約定優於配置 --- ### 版本控管 --- ### [Code Review](https://ithelp.ithome.com.tw/articles/10202760) --- ### [RESTful API](https://progressbar.tw/posts/53),Web API --- ### 自動化測試 --- ## 前端的定位分歧 --- 1. 前端設計師 or UI/UX 設計師 聚焦在網頁設計(Web Design) <!-- .element: class="fragment" --> 主要技能: HTML、CSS、視覺設計、動態效果、SEO、a11y(無障礙網頁) 互動設計、使用者體驗、易用性測試、遊戲設計 <!-- .element: class="fragment" --> [介面設計師](https://challenge.thef2e.com/news/9) --- 2. 前端工程師 技能圍繞著 JavaScript,理解 ==瀏覽器==,處理數據來呈現各種應用 <!-- .element: class="fragment" --> 將設計稿轉換為具體呈現並可操作互動的網站 <!-- .element: class="fragment" --> <span>Svg、Canvas、Audio、Video</span><!-- .element: class="fragment" --> <span>地圖應用:[Google Map](https://developers.google.com/maps/documentation)、[Leaflet](https://leafletjs.com/)、[OpenLayers](https://openlayers.org/)、[Cesium](https://cesiumjs.org/)、[ArcGIS](https://developers.arcgis.com/javascript/)</span><!-- .element: class="fragment" --> <span>圖表資料視覺化:[D3.js](https://d3js.org/)、[Chart.js](https://www.chartjs.org/)</span><!-- .element: class="fragment" --> <span>3D 應用:[Three.js](https://threejs.org/)、[Babylon.js](https://www.babylonjs.com/)</span><!-- .element: class="fragment" --> <span>遊戲:[Pixi.js](https://www.pixijs.com/)、[Phaser](http://phaser.io/)</span><!-- .element: class="fragment" --> <span>跨平台技術:[Electron](https://electronjs.org/)、[React Native](https://facebook.github.io/react-native/)</span><!-- .element: class="fragment" --> --- ###### tags: `前端經驗分享`

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully