React Demo 03-Find Square Game

react hooks自2019年1月發佈以來已通過去快一年了,苦於沒有練手項目嗎?在這裏我將爲你們分享一些簡單易懂的hook實戰demo,後面的demo複雜度會慢慢增長。react

Find Square Game

點擊方塊小遊戲git

難易程度: ⭐github

在線預覽npm

源碼地址json

相關項目

  • Happy Clicker瀏覽器

    一個簡單的計數器,能夠'加一','減一'和'重置'bash

  • Beautify Starsapp

    一個簡單的評分組件post

快速開始

  1. 克隆倉庫
git clone git@github.com:tangweikun/happy-find-square-game.git
複製代碼
  1. 安裝依賴包
cd happy-find-square-game
yarn | npm install
複製代碼
  1. 本地運行
yarn start | npm run start
複製代碼
  1. 在瀏覽器中打開http://localhost:3000查看效果

部署到 Github Pages

  1. 添加 homepagepackage.json
"homepage": "https://myusername.github.io/my-app",
複製代碼
  1. 安裝 gh-pages
yarn add gh-pages
複製代碼
  1. package.json中添加部署腳本
"scripts": {
+   "predeploy": "npm run build",
+   "deploy": "gh-pages -d build",
    "start": "react-scripts start",
    "build": "react-scripts build",
複製代碼
  1. 執行 yarn deploy
yarn deploy
複製代碼
  1. 打開https://myusername.github.io/my-app查看效果
相關文章
相關標籤/搜索