示範:https://mhasbini.com/miscs/react-chrome-dino-demo/index.html
安裝:
yarn add react-chrome-dino
import React from 'react' ;
import ChromeDinoGame from 'react-chrome-dino' ;
const App = ( ) => (
< ChromeDinoGame / >
) ;
export default App ;
檢查src/demo
以取得使用範例。
該庫已獲得麻省理工學院的許可。
遊戲 javascript 和 css 在 BSD 下獲得許可,如下所示:
// Copyright (c) 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file here: https://cs.chromium.org/chromium/src/LICENSE.
在專案目錄中,您可以運行:
npm start
或yarn start
在開發模式下運行庫。在瀏覽器中開啟http://localhost:3000即可查看。
npm run test
或yarn run test
以互動模式執行測試觀察程式。
npm run build
或yarn build
將用於生產的庫建置到build
資料夾中。它在生產模式下正確捆綁 React 並優化構建以獲得最佳性能。
npm publish
將庫發佈到 NPM。