建立專案

1-首先,安裝 https://www.meteor.com/install

2-建立專案。 (--bare 是建立一個空專案)

meteor create --bare MyAwesomeProject

3-建立最小檔案結構(-p 以建立中間目錄):

cd MyAwesomeProject

mkdir -p client server imports/api imports/ui/{components,layouts,pages} imports/startup/{client,server}

4-現在,在 client / main.html 中建立一個 HTML 檔案

<head>
   <meta charset="utf-8">
   <title>My Awesome Meteor_React_ReactRouter_Roles App</title>
</head>
 
<body>
  Welcome to my Meteor_React_ReactRouter_Roles app
</body>

5-確保它正常工作:(3000 是預設埠,因此你實際上可以跳過’-p 3000’)

meteor run -p 3000

並在’localhost:3000’上開啟瀏覽器

注意:

  • 我正在跳過你需要建立的其他檔案,以縮短時間。具體來說,你需要在客戶端匯入/啟動/ {客戶端,伺服器}伺服器目錄中建立一些 index.js 檔案。

  • 你可以在 https://github.com/rafa-lft/Meteor_React_Base 中檢視完整示例。尋找標籤 Step1_CreateProject