update README

This commit is contained in:
Naoyuki Kanezawa
2013-06-08 11:44:22 +09:00
parent d0272721de
commit e6d11483a7

View File

@@ -5,6 +5,19 @@ This is the Engine.IO Client Library for Java, which is simply ported from the [
See also: [Socket.IO-client.java](https://github.com/nkzawa/socket.io-client.java) See also: [Socket.IO-client.java](https://github.com/nkzawa/socket.io-client.java)
## Installation
The latest artifact is available on Maven Central. Add the following dependency to your `pom.xml`.
```xml
<dependencies>
<dependency>
<groupId>com.github.nkzawa</groupId>
<artifactId>engine.io-client</artifactId>
<version>0.1.0</version>
</dependency>
</dependencies>
```
## Usage ## Usage
Engine.IO-client.java has the similar api with the JS client. You can use `Socket` to connect: Engine.IO-client.java has the similar api with the JS client. You can use `Socket` to connect:
@@ -51,7 +64,7 @@ http://nkzawa.github.io/engine.io-client.java/apidocs/
## Features ## Features
This library supports all of the features the JS client does, including events, options and upgraging transport. This library supports all of the features the JS client does, including events, options and upgraging transport. Android is fully supported.
## License ## License