上一篇:Theia架構html
本指南將教你如何構建你本身的Theia應用。node
你須要安裝node 10版本(譯者:事實上最新的node穩定版便可):python
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.5/install.sh | bash nvm install 10
以及yarn:linux
npm install -g yarn
還須要確保已安裝python 2.x,可經過python --version來檢查。git
首先請建立一個空目錄,而後切換到這個目錄下:github
mkdir my-app cd my-app
在這個目錄下建立package.json:typescript
{ "private": true, "dependencies": { "typescript": "latest", "@theia/typescript": "next", "@theia/navigator": "next", "@theia/terminal": "next", "@theia/outline-view": "next", "@theia/preferences": "next", "@theia/messages": "next", "@theia/git": "next", "@theia/file-search": "next", "@theia/markers": "next", "@theia/preview": "next", "@theia/callhierarchy": "next", "@theia/merge-conflicts": "next", "@theia/search-in-workspace": "next", "@theia/json": "next", "@theia/textmate-grammars": "next", "@theia/mini-browser": "next" }, "devDependencies": { "@theia/cli": "next" } }
簡而言之,Theia應用程序和擴展包都是Node.js包。每個包都包含一個package.json文件,裏面列出了包的一些元數據,如name、version、運行時和構建時的依賴關係等。npm
首先,安裝全部的依賴項。json
yarn
而後,使用Theia CLI來構建應用程序。瀏覽器
yarn theia build
yarn在咱們應用程序的上下文中查找由@theia/cli提供的theia可執行文件,而後使用theia執行build命令。這可能須要一些時間,由於默認狀況下應用程序會在production模式下進行構建,即它會進行模糊處理和最小化處理。
構建完成以後,咱們就能夠啓動應用程序:
yarn theia start
你能夠在命令的第一個參數中指定一個workspace路徑,--hostname和--port選項用來指定部署的主機名和端口號。例以下面的命令在指定的位置和端口號上打開/workspace:
yarn theia start /my-workspace --hostname 0.0.0.0 --port 8080
在終端中,你應該看到Theia應用程序已經啓動並監聽:
打開瀏覽器並輸入上面顯示的地址,你就能夠打開應用程序了。
若是你經過代理運行yarn命令,在構建本地依賴項時有可能會遇到一些問題(如onigurma),例以下面的這個錯誤:
[4/4] Building fresh packages... [1/9] XXXXX [2/9] XXXXX [3/9] XXXXX [4/9] XXXXX error /theiaide/node_modules/XXXXX: Command failed. Exit code: 1 Command: node-gyp rebuild Arguments: Directory: /theiaide/node_modules/XXXXX Output: gyp info it worked if it ends with ok gyp info using node-gyp@3.8.0 gyp info using node@8.15.0 | linux | x64 gyp http GET https://nodejs.org/download/release/v8.15.0/node-v8.15.0-headers.tar.gz gyp WARN install got an error, rolling back install gyp ERR! configure error gyp ERR! stack Error: read ECONNRESET gyp ERR! stack at TLSWrap.onread (net.js:622:25) gyp ERR! System Linux 3.10.0-862.11.6.el7.x86_64 gyp ERR! command "/usr/bin/node" "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" gyp ERR! cwd /theiaide/node_modules/XXXXX gyp ERR! node -v v8.15.0
這是由於node-gyp在system/NPM的代理設置中不工做。若是遇到這種狀況,能夠經過錯誤堆棧中提供的連接下載node-headers文件(如上面例子中的https://nodejs.org/download/release/v8.15.0/node-v8.15.0-headers.tar.gz),而後使用下面的命令進行構建:
npm_config_tarball=/path/to/node-v8.15.0-headers.tar.gz yarn install