Skip to content

Commit

Permalink
Merge 53e263e into 04f2de7
Browse files Browse the repository at this point in the history
  • Loading branch information
jirenius committed Aug 2, 2019
2 parents 04f2de7 + 53e263e commit 77fcbbc
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Whenever there is a change to the data, the responsible micro-service sends an e

### Download
The recommended way to install *Resgate* and *NATS Server* is to download one of the pre-built binaries:
* [Download](https://nats.io/download/nats-io/gnatsd/) and run NATS Server
* [Download](https://github.com/resgateio/resgate/releases/latest) and run Resgate
* [Download](https://nats.io/download/nats-io/nats-server/) and run NATS Server
* [Download](https://resgate.io/download/) and run Resgate

### Building

Expand All @@ -46,10 +46,10 @@ If you wish to build your own binaries, first make sure you have:
* added `$GOPATH/bin` (where your binaries are stored) to your `PATH`
* [installed node.js](https://nodejs.org/en/download/) (for the test app)

Install and run [NATS server](https://nats.io/download/nats-io/gnatsd/) and Resgate:
Install and run [NATS server](https://nats-io.github.io/docs/nats_server/installation.html) and Resgate:
```bash
go get github.com/nats-io/gnatsd
gnatsd
go get github.com/nats-io/nats-server
nats-server
```
```bash
go get github.com/resgateio/resgate
Expand Down
2 changes: 1 addition & 1 deletion docs/res-protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ The messaging system handles the communication between [services](#services) and
* guarantee that the messages and responses sent by any one service will arrive in the same order as they were sent
* guarantee any service or gateway is notified on connection loss, or any other disturbance that might have caused any message or response to not having been delivered.

Resgate, the gateway implementation of the RES protocol, uses [NATS server](https://nats.io/documentation/server/gnatsd-intro/) as messaging system.
Resgate, the gateway implementation of the RES protocol, uses [NATS server](https://nats.io/about/) as messaging system.

## Services

Expand Down
2 changes: 1 addition & 1 deletion examples/book-collection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This is an example, written in javascript (node.js), of a RES service with colle

## Prerequisite

* Have [NATS Server](https://nats.io/download/nats-io/gnatsd/) and [Resgate](https://github.com/resgateio/resgate) running
* Have [NATS Server](https://nats-io.github.io/docs/nats_server/installation.html) and [Resgate](https://resgate.io/docs/get-started/installation/) running
* Have [node.js](https://nodejs.org/en/download/) installed

## Running the example
Expand Down
2 changes: 1 addition & 1 deletion examples/client-session/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The client consists of a single file:

## Prerequisite

* Have [NATS Server](https://nats.io/download/nats-io/gnatsd/) and [Resgate](https://github.com/resgateio/resgate) running
* Have [NATS Server](https://nats-io.github.io/docs/nats_server/installation.html) and [Resgate](https://resgate.io/docs/get-started/installation/) running
* Have [node.js](https://nodejs.org/en/download/) installed

## Install and run
Expand Down
2 changes: 1 addition & 1 deletion examples/edit-text/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This is an example written in Javascript (Node.js) of a simple text field that c

## Prerequisite

* Have [NATS Server](https://nats.io/download/nats-io/gnatsd/) and [Resgate](https://github.com/resgateio/resgate) running
* Have [NATS Server](https://nats-io.github.io/docs/nats_server/installation.html) and [Resgate](https://resgate.io/docs/get-started/installation/) running
* Have [node.js](https://nodejs.org/en/download/) installed

## Install and run
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is a Hello World example written in javascript (Node.js).

## Prerequisite

* Have [NATS Server](https://nats.io/download/nats-io/gnatsd/) and [Resgate](https://github.com/resgateio/resgate) running
* Have [NATS Server](https://nats-io.github.io/docs/nats_server/installation.html) and [Resgate](https://resgate.io/docs/get-started/installation/) running
* Have [node.js](https://nodejs.org/en/download/) installed

## Install and run
Expand Down
2 changes: 1 addition & 1 deletion examples/jwt-authentication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resgate --headauth auth.jwtHeader
```
## Prerequisite

* Have [NATS Server](https://nats.io/download/nats-io/gnatsd/) and [Resgate](https://github.com/resgateio/resgate) (with the *headauth* flag) running
* Have [NATS Server](https://nats-io.github.io/docs/nats_server/installation.html) and [Resgate](https://github.com/resgateio/resgate) (with the *headauth* flag) running
* Have [node.js](https://nodejs.org/en/download/) installed

## Install and run
Expand Down
2 changes: 1 addition & 1 deletion examples/password-authentication/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This example, written in Javascript (Node.js), shows how authentication can be d

## Prerequisite

* Have [NATS Server](https://nats.io/download/nats-io/gnatsd/) and [Resgate](https://github.com/resgateio/resgate) running
* Have [NATS Server](https://nats-io.github.io/docs/nats_server/installation.html) and [Resgate](https://resgate.io/docs/get-started/installation/) running
* Have [node.js](https://nodejs.org/en/download/) installed

## Install and run
Expand Down

0 comments on commit 77fcbbc

Please sign in to comment.