Skip to content

Commit

Permalink
chore: update links and text (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
weboko authored Jan 8, 2024
2 parents 7f3b898 + 7312249 commit 7044d8d
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 14 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

This repository is dedicated for proof of concepts, examples and research done around core Waku libraries.

Repo is hosted at https://lab.waku.org/
See https://examples.waku.org/ for more examples.

### Web Chat App
Expand Down
2 changes: 1 addition & 1 deletion examples/light-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ This example uses Waku Filter to listen to messages and Waku Light Push to send

To test the example, simply download the `index.html` file from this folder and open it in a browser.

The `master` branch's HEAD is deployed at https://examples.waku.org/light-js/.
The `master` branch's HEAD is deployed at https://lab.waku.org/light-js/.
3 changes: 2 additions & 1 deletion examples/noise-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
npm install
npm start
```
Browse to http://localhost:8080
Browse to http://localhost:8080
The `master` branch's HEAD is deployed at https://lab.waku.org/noise-js/
4 changes: 3 additions & 1 deletion examples/noise-rtc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ What should be done:
- `STUN` server: in order not to loose benefits of peer-to-peer protocols used underneath we should find a way to be able to retrieve coordinates of a user to build `offer/answer` by not involving one `STUN` server for it;
- `TURN` server: similarly to prev point we should be able to cover a need to create WebRTC connection for users who are behind secure `NAT` and are not able to communicated just as it is.

Additional reading that explains why `STUN/TURN` is not easily removable from the equation: https://github.com/libp2p/specs/pull/497/files#diff-2cb0b0dcc282bd123b21f5a0610e8a01b516fc453b95c655cf7e16734f2f7b11R48-R53
Additional reading that explains why `STUN/TURN` is not easily removable from the equation: https://github.com/libp2p/specs/pull/497/files#diff-2cb0b0dcc282bd123b21f5a0610e8a01b516fc453b95c655cf7e16734f2f7b11R48-R53

The `master` branch's HEAD is deployed at https://lab.waku.org/noise-rtc/
4 changes: 2 additions & 2 deletions examples/relay-angular-chat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

A barebone messaging app to illustrate the seamless integration of `js-waku` into AngularJS.

The `master` branch's HEAD is deployed at https://examples.waku.org/relay-angular-chat/.
The `master` branch's HEAD is deployed at https://lab.waku.org/relay-angular-chat/.

To run a development version locally, do:

```shell
git clone https://github.com/waku-org/js-waku-examples
cd js-waku-examples/examples/relay-angular-chat
cd waku-lab/examples/relay-angular-chat
npm install
npm start
```
Expand Down
2 changes: 1 addition & 1 deletion examples/relay-direct-rtc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This example uses WebRTC transport and Waku Relay to exchange messages.

To test the example run `npm install` and then `npm start`.

The `master` branch's HEAD is deployed at https://examples.waku.org/relay-direct-chat/.
The `master` branch's HEAD is deployed at https://lab.waku.org/relay-direct-chat/

### Steps to run an example:
1. Get a Waku node that implements `/libp2p/circuit/relay/0.2.0/hop` and `/libp2p/circuit/relay/0.2.0/stop`
Expand Down
2 changes: 1 addition & 1 deletion examples/relay-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ This example uses Waku Relay to send and receive simple text messages.

To test the example, simply download the `index.html` file from this folder and open it in a browser.

The `master` branch's HEAD is deployed at https://examples.waku.org/relay-js/.
The `master` branch's HEAD is deployed at https://lab.waku.org/relay-js/
7 changes: 3 additions & 4 deletions examples/relay-reactjs-chat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,18 @@

- Group chat
- React/JavaScript
- `create-react-app`/`react-scripts` 5.0.0
- Waku Relay
- Protobuf using `protobufjs`.

A barebone chat app to illustrate the seamless integration of `js-waku` into ReactJS.

The `master` branch's HEAD is deployed at https://examples.waku.org/relay-reactjs-chat/.
The `master` branch's HEAD is deployed at https://lab.waku.org/relay-reactjs-chat/.

To run a development version locally, do:

```shell
git clone https://github.com/waku-org/js-waku-examples
cd js-waku-examples/examples/relay-reactjs-chat
git clone https://github.com/waku-org/waku-lab
cd waku-lab/examples/relay-reactjs-chat
npm install
npm run start
```
6 changes: 3 additions & 3 deletions examples/web-chat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@

A ReactJS chat app is provided as a showcase of the library used in the browser.
It implements [Waku v2 Toy Chat](https://rfc.vac.dev/spec/22/) protocol.
A deployed version is available at https://examples.waku.org/web-chat/.
A deployed version is available at https://lab.waku.org/web-chat/.

To run a development version locally, do:

```shell
git clone https://github.com/waku-org/js-waku-examples
cd js-waku-examples/examples/web-chat
git clone https://github.com/waku-org/waku-lab
cd waku-lab/examples/web-chat
npm install
npm run start
```
Expand Down

0 comments on commit 7044d8d

Please sign in to comment.