update README

This commit is contained in:
Philipp Kunz 2016-08-07 15:14:53 +02:00
parent 10cd0ef167
commit 0bde7ec41b

View File

@ -10,7 +10,8 @@ We recommend the use of typescript.
### Serverside ### Serverside
```typescript ```typescript
import * as smartsocket from "smartsocket" import * as smartsocket from "smartsocket";
let mySmartsocket = new smartsocket.Smartsocket({ let mySmartsocket = new smartsocket.Smartsocket({
port: 3000 // the port smartsocket will listen on port: 3000 // the port smartsocket will listen on
}); });
@ -37,6 +38,8 @@ mySmartsocket.clientCall.select("client1","restart",data)
#### Client side #### Client side
```typescript ```typescript
import * as smartsocket from "smartsocket";
let mySmartsocketClient = new smartsocket.SmartsocketClient({ let mySmartsocketClient = new smartsocket.SmartsocketClient({
url: "somedomain.com", // url, note: will only work over https, no http supported. url: "somedomain.com", // url, note: will only work over https, no http supported.
port: 3000 port: 3000