官方安裝教程:http://vertx.io/install.htmljavascript
安裝包下載地址:http://vertx.io/downloads.htmlhtml
須要注意的是vertx至少須要JDK1.7版本java
一、解壓安裝包web
tar -zxvf ~/Downloads/vert.x-2.1.2.tar瀏覽器
二、添加環境變量bash
將vertx的bin目錄添加到PATH環境變量中測試
vi ~/.bash_profile export VERTX_HOME=/usr/local/Cellar/vert.x-2.1.2 export PATH=$VERTX_HOME/bin:$PATH source ~/.bash_profile
三、檢查版本ui
vertx version
將會顯示vertx版本,相似以下:.net
2.1.2 (built 2014-07-24 07:45:28)
四、測試安裝code
咱們能夠經過寫一個簡單的web服務來測試vertx安裝
新建文件server.js,添加下面的測試代碼
var vertx = require('vertx'); vertx.createHttpServer().requestHandler(function(req) { req.response.end("Hello World!"); }).listen(8080, 'localhost');
運行代碼:
vertx run server.js
首次運行vertx會從遠程下載依賴的模塊
Downloading io.vertx~lang-rhino~2.1.1. Please wait... Downloading 100% Module io.vertx~lang-rhino~2.1.1 successfully installed Downloading io.vertx~lang-js~1.1.0. Please wait... Downloading 100% Module io.vertx~lang-js~1.1.0 successfully installed Succeeded in deploying verticle
打開瀏覽器,輸入http://localhost:8080,你將會看到"Hello World!"